.doctor-search-container{
    position:relative;
    max-width: 100%;
    width: 768px;
    margin: 30px auto 0;
}
.doctor-search-wrapper {
    display: flex;
    gap: 10px;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 0 10px rgb(255 255 255 / .2);
    padding: 10px;
}
.doctor-search-wrapper #doctor-search, .doctor-search-wrapper select#department-filter, .doctor-search-wrapper select option {
    height: 38px;
    color: #011b3c;
    font-size: 13px;
}
.doctor-search-wrapper button#doctor-search-btn{
    color: #011b3c;
    border: none;
    background-color:#EC691F;
    border-radius: 5px;
    transition: .5s ease;
}
.doctor-search-wrapper button#doctor-search-btn:hover{
    background-color:#0060AA;
    color: #fff;
}
#doctor-search-results{
    display:none;
    width: 768px;
    max-width: 100%;
    margin: 25px auto 0;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.doctor-item{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    cursor:pointer;
    border-bottom:1px solid #eee;
    transition:.3s;
}

.doctor-item:hover{
    background:#299fb11a;
}

.doctor-item img{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    background: #e9e8ff;
}

.doctor-info h4{
    margin:0;
    font-weight: 600;
    font-size: 14px;
    color: #0060aa;
    display: block;
}

.doctor-info p{
    margin:5px 0;
    color: #000;
    font-size: 14px;
}

.doctor-info span{
    color: #0060aa;
    font-size: 14px;
}

.no-result{
    justify-content:center;
}