/* ==========================================================================
   HALAMAN DOKTER
   ========================================================================== */

.doctor-page {
    padding: 70px 0;
    background: #f8fafc;
}


/* ==========================================================================
   HEADER
   ========================================================================== */

.doctor-page .section-heading {
    margin-bottom: 30px;
}

.doctor-page .section-heading h1 {
    font-size: 36px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.doctor-page .section-heading p {
    color: #64748b;
    max-width: 650px;
    margin: 0 auto;
}


/* ==========================================================================
   PENCARIAN DOKTER
   ========================================================================== */

.doctor-search {
    margin-bottom: 10px;
}

.doctor-search .input-group {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.06);
}

.doctor-search .input-group-text {
    background: #ffffff;
    border: 0;
    color: #0d6efd;
    padding-left: 16px;
}

.doctor-search .form-control {
    border: 0;
    padding: 13px 15px;
    box-shadow: none !important;
}

.doctor-search .form-control:focus {
    box-shadow: none;
}


/* ==========================================================================
   CARD DOKTER
   ========================================================================== */

.doctor-public-card {
    height: 100%;
    background: #ffffff;

    border: 1px solid #e5e7eb;
    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 5px 20px rgba(15, 23, 42, 0.06);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.doctor-public-card:hover {

    transform: translateY(-5px);

    box-shadow:
        0 15px 35px rgba(15, 23, 42, 0.12);

}


/* ==========================================================================
   PLACEHOLDER FOTO DOKTER
   ========================================================================== */

.doctor-placeholder {

    height: 190px;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #eaf4ff,
            #dbeafe
        );
}


.doctor-placeholder-icon {

    width: 100px;
    height: 100px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #0d6efd;

    font-size: 52px;

    box-shadow:
        0 8px 25px rgba(13, 110, 253, 0.15);
}


/* ==========================================================================
   BODY CARD
   ========================================================================== */

.doctor-public-body {

    padding: 20px;
}


/* ==========================================================================
   NAMA DOKTER
   ========================================================================== */

.doctor-public-name {

    margin: 0 0 10px;

    font-size: 18px;

    font-weight: 700;

    color: #1e293b;

    line-height: 1.4;
}


/* ==========================================================================
   POLI
   ========================================================================== */

.doctor-public-poli {

    display: flex;

    align-items: flex-start;

    gap: 8px;

    color: #0d6efd;

    font-size: 14px;

    font-weight: 600;

    margin-bottom: 18px;
}


.doctor-public-poli i {

    margin-top: 3px;

}


/* ==========================================================================
   JADWAL PRAKTIK
   ========================================================================== */

.doctor-public-schedule {

    border-top: 1px solid #eef2f7;

    padding-top: 15px;
}


.schedule-title {

    font-size: 13px;

    font-weight: 600;

    color: #475569;

    margin-bottom: 10px;
}


.schedule-title i {

    margin-right: 5px;

    color: #0d6efd;

}


/* ==========================================================================
   BARIS JADWAL
   ========================================================================== */

.schedule-row {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 10px;

    padding: 7px 0;

    border-bottom: 1px dashed #e5e7eb;

    font-size: 13px;
}


.schedule-row:last-child {

    border-bottom: 0;

}


.schedule-row span:first-child {

    font-weight: 600;

    color: #334155;

}


.schedule-row span:last-child {

    color: #64748b;

    white-space: nowrap;

}


/* ==========================================================================
   JADWAL BELUM TERSEDIA
   ========================================================================== */

.doctor-no-schedule {

    padding-top: 15px;

    border-top: 1px solid #eef2f7;

    font-size: 13px;

    color: #94a3b8;

    font-style: italic;
}


/* ==========================================================================
   DATA KOSONG
   ========================================================================== */

.doctor-empty {

    text-align: center;

    padding: 50px 20px;

    color: #64748b;
}


.doctor-empty i {

    font-size: 45px;

    color: #94a3b8;

    margin-bottom: 15px;
}


.doctor-empty h5 {

    color: #334155;

    font-weight: 600;

    margin-bottom: 5px;
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 575.98px) {

    .doctor-page {

        padding: 50px 0;

    }


    .doctor-page .section-heading h1 {

        font-size: 28px;

    }


    .doctor-placeholder {

        height: 170px;

    }


    .doctor-public-body {

        padding: 18px;

    }

}