body {
    background: #fff0d3;
    font-family: 'Segoe UI', sans-serif;
}

/* SEARCH */
#doctor-search {
    width: 100%;
    max-width: 420px;
    padding: 14px;
    border-radius: 12px;
    border: none;
    background: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* GRID */
#doctor-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px,1fr));
    gap: 30px;
}

/* CARD */
.doctor-card {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
}

.doctor-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* IMAGE */
.doctor-img {
    position: relative;
}

.doctor-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

/* BADGE */
.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #FFD682;
    color: black !important;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.stars {
    color: #f39c12;
}
/* BODY */
.doctor-body {
    padding: 18px;
}

.doctor-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

/* RATING */
.rating {
    font-size: 14px;
    margin-bottom: 10px;
}

.review {
    color: #777;
}

/* ADDRESS */
.address {
    font-size: 13px;
    margin-bottom: 14px;
    color: #444;
}

/* BUTTONS */
.doctor-actions {
    display: flex;
    gap: 10px;
}

.btn-map,
.btn-call {
    flex: 1;
    text-align: center;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    background: linear-gradient(135deg, #FFD682, #ffb347);
    color: black;
    transition: 0.3s;
}

.btn-map:hover,
.btn-call:hover {
    transform: scale(1.05);
}
.doctor-phone {
    text-align: center;
    margin-top: 8px;
    font-weight: 600;
    color: black !important;
    color: #1976d2;
}
/* LOADER */
.spinner {
    border: 5px solid #fff;
    border-top: 5px solid #1976d2;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}
.btn-map i,
.btn-call i {
    margin-right: 6px;
}
@keyframes spin {
    100% { transform: rotate(360deg); }
}