/* Map container */
#doctors-map {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
}

/* Card */
.doctor-card {
    background: #C9E8FF;
    border-radius: 48px;
    padding: 32px 48px;
    transition: 0.15s ease;
}

/* Titles */
.doctor-title {
    margin-bottom: 10px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
}

.doctor-name {
    margin-bottom: 4px;
    font-size: 1rem;
    font-weight: bold;
}

/* Row containing address + toggle */
.doctor-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.doctor-address {
    margin: 0;
    font-size: 0.95rem;
}

.doctor-specialization {
    line-height: 20px;
}

.doctor-specialization span {
    font-weight: bold;
}

/* Toggle button */
.doctor-toggle {
    color: #0E2258;
    padding: 0;
    border: 0;
    background: transparent;
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
}

.doctor-toggle:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
    top: -3px;
    position: relative;
    margin: 0 0 0 8px;
}

/* Contacts box */
.doctor-contacts {
    display: none;
    margin: 12px 0;
    padding-top: 10px;
    border-top: 1px solid rgba(13, 32, 89, .25);
    font-size: 0.95rem;
}

.doctor-contacts a {
    color: #0E2258;
}

.doctor-contacts p {
    margin: 4px 0;
}

/* Map link */
.doctor-map-link {
    border-radius: 40px;
    color: #0D2059 !important;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 24px 8px 32px;
    font-weight: bold;
}

.doctor-map-link:hover {
    text-decoration: underline;
}

.doctor-map-link svg {
    margin: 0 0 0 16px;
}

.form-select,
.doctor-search-input {
    color: #0E2258 !important;
    font-size: 20px;
    border-color: #0E225880 !important;
    border-radius: 40px;
    padding: 24px 32px;
}

.form-select:focus,
.doctor-search-input:focus {
    box-shadow: none;
    outline: none;
}

.doctor-search-input::placeholder {
    color: #0E2258;
    font-size: 20px !important;
}

.btn-clear {
    display: none;
}

.btn-clear:focus {
    box-shadow: none;
}

.fs-80 {
    font-size: 80px !important;
    line-height: 108% !important;
}

.fs-80 span {
    color: #0E225880;
}

/* Pagination */
#doctor-pagination {
    margin: 48px 0 0 !important;
    gap: 10px;
    flex-wrap: wrap;
}

.doctor-pagination-btn {
    /*border-radius: 40px;*/
    color: #0D2059;
    background: #fff;
    border: 1px solid rgba(14, 34, 88, 0.25);
    padding: 10px 16px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: 0.15s ease;
}

.doctor-pagination-btn:hover {
    text-decoration: underline;
}

.doctor-pagination-btn.is-active {
    background: #0D2059;
    color: #fff;
    border-color: #0D2059;
    text-decoration: none;
}

.doctor-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    text-decoration: none;
}
