/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 27-Apr-2025, 5:54:03 am
    Author     : Vikas Arora
*/
.cc-search-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.cc-search-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
    color:#fff;
}

.cc-search-bar {
    position: relative;
    display: flex;
    align-items: center;
}

#cc-search-input {
    width: 100%;
    padding: 12px 40px 12px 15px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#cc-search-icon {
    position: absolute;
    right: 15px;
    font-size: 18px;
    color: #0073aa;
}

#cc-search-results {
    margin-top: 10px;
    background: #fff;
/*    border: 1px solid #ccc;*/
    border-top: none;
    max-height: 300px;
    overflow-y: auto;
    padding: 10px 0px;
    display: none;
}

.cc-search-result-list {
    list-style-type: none !important;
    margin: 0px !important;
    padding: 0px !important;
}

.cc-search-result-list li {
/*    padding: 10px;
    border-bottom: 1px solid #eee;*/
    padding: 5px 10px;
    display: flex;
    align-items: center;
}

.cc-search-result-list li img{
    width: 30px;
    
}

.cc-search-result-list li a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    margin:0px 10px;
}

.cc-search-result-list li:hover {
    background: #c9e9ff;
    color:#fff;
}
.certification_for{
    display: flex;
    color:#888;
        font-size: 12px;
    line-height: 15px;
}

.cc-no-results {
    padding: 10px;
    text-align: center;
    color: #888;
}

/* Responsive */
@media (max-width: 600px) {
    .cc-search-options {
        flex-direction: column;
        align-items: flex-start;
    }
}


