﻿.doctor-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.doctor-education,
.doctor-specialization {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.doctor-education i {
    color: #007c7a;
}

.doctor-specialization i {
    color: #007c7a;
}
.doctor-card {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #d9e6e8;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    margin-bottom: 15px;
    transition: 0.3s;
}

    .doctor-card:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,.12);
    }

.doctor-image {
    width: 120px;
    text-align: center;
}



.doctor-details {
    flex: 1;
    padding-left: 20px;
}

.doctor-name {
    font-size: 24px;
    font-weight: 600;
    color: #007C7A;
    margin-bottom: 10px;
}

.fee-label {
    display: inline-block;
    padding: 5px 12px;
    background: #EAF8F7;
    color: #666;
    border-radius: 20px;
    font-size: 13px;
    margin-bottom: 8px;
}

.doctor-fee {
    font-size: 12px;
    font-weight: bold;
    color: #E65100;
}

@media (max-width:768px) {

    .doctor-card {
        display: block;
        text-align: center;
    }

    .doctor-image {
        width: 100%;
        margin-bottom: 15px;
    }

    .doctor-details {
        padding-left: 0;
    }

    .doctor-name {
        font-size: 20px;
    }
}

.doctor-info-card {
    background: #ffffff;
    border: 1px solid #d9e6e8;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);
    height: 100%;
}

.doctor-education {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 24px;
}

    .doctor-education i {
        color: #007C7A;
        margin-right: 8px;
    }

.doctor-specialization {
    display: inline-block;
    background: #EAF8F7;
    color: #007C7A;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
}

    .doctor-specialization i {
        margin-right: 6px;
    }

.doctor-message {
    background: #FFF8F0;
    border-left: 4px solid #F57C00;
    padding: 12px 15px;
    border-radius: 6px;
}

.message-title {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

    .message-title i {
        color: #F57C00;
        margin-right: 6px;
    }

.message-body {
    color: #8B4513;
    line-height: 24px;
    text-align: justify;
    font-size: 14px;
}

@media (max-width:768px) {

    .doctor-info-card {
        padding: 15px;
    }

    .doctor-education,
    .doctor-specialization,
    .message-body {
        font-size: 14px;
    }
}

.date-navigation-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1px solid #d9e6e8;
    border-radius: 10px;
    padding: 12px 18px;
    margin: 2px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.nav-left,
.nav-right {
    width: 120px;
}

.nav-center {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex: 1;
}

.btn-nav {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #007C7A;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}

    .btn-nav:hover {
        background: #005f5d;
    }

.btn-refresh {
    background: #f4f4f4;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 8px 15px;
    color: #444;
}

.RadPicker {
    min-width: 145px !important;
}

@media (max-width:768px) {

    .date-navigation-card {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }

    .nav-left,
    .nav-right,
    .nav-center {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .nav-center {
        flex-wrap: wrap;
    }
}

.slot-container {
    display: flex;
    gap: 1px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.slot-day {
    flex: 1;
    min-width: 180px;
}

.slot-card {
    background: #fff;
    border-radius: 5px;
    border: 1px solid #dfe8ea;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0,0,0,.08);
    transition: .3s;
}

    .slot-card:hover {
        transform: translateY(-3px);
    }

.slot-header {
    background: #007C7A;
    color: #fff;
    text-align: center;
    padding: 8px;
    font-weight: 600;
    font-size: 16px;
}

.slot-body {
    padding: 10px;
    min-height: 220px;
}

.slot-footer {
    background: #F4F7F8;
    border-top: 1px solid #ddd;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: #666;
}

/* ==========================================
   CONSENT MODAL
   ========================================== */

.ft-modal {
    display: none;

    position: fixed;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    z-index: 999999;

    background: rgba(0, 0, 0, 0.60);

    overflow-y: auto;

    padding: 5px 5px;

    box-sizing: border-box;
}


/* ==========================================
   MODAL CONTENT
   ========================================== */

.ft-modal-content {
    position: relative;

    width: 90%;
    max-width: 850px;

    margin: 10px auto;

    background: #ffffff;

    border-radius: 10px;

    padding: 10px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.30);

    box-sizing: border-box;
}


/* ==========================================
   MODAL BODY
   ========================================== */

.ft-modal-body1 {
    padding: 3px 8px;
    font-size: 16px;
    line-height: 1.25;
    max-height: none !important;
    overflow: visible !important;
}

.ft-modal-body1 p {
    font-size: 16px;
    line-height: 1.25;
    margin-bottom: 5px;
}

.ft-modal-body1 h4 {
    font-size: 16px;
    margin: 5px 0;
}

.ft-modal-body1 h5 {
    font-size: 16px !important;
    margin: 3px 0;
}

/* ==========================================
   CLOSE BUTTON
   ========================================== */

.ft-modal-close {

    color: #007c7a !important;

    font-weight: 600;

    text-decoration: none !important;

    cursor: pointer;
}


.ft-modal-close:hover {

    color: #e65100 !important;
}

img {
    border-radius: 50%;
}

input[type="radio"] {
    margin-right: 10px;
    font-weight: 700;
}

.slot-grid {
    width: 100%;
}

    .slot-grid td {
        border: none !important;
        padding: 5px;
        text-align: center;
    }

    .slot-grid a {
        display: block;
        padding: 10px;
        background: #EAF8F7;
        border: 1px solid #007C7A;
        color: #007C7A !important;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        margin-bottom: 8px;
        transition: .3s;
    }

        .slot-grid a:hover {
            background: #007C7A;
            color: #fff !important;
        }

    .slot-grid .empty {
        background: #FFF3F3;
        color: #D32F2F;
        padding: 20px;
        border-radius: 8px;
        font-weight: 600;
    }

.slot-empty {
    text-align: center;
    color: #d32f2f;
    font-weight: 600;
    padding: 10px 5px;
    font-size: 15px;
}

.gender-box {
    padding-top: 6px;
}

.gender-list input {
    margin-right: 5px;
}

.gender-list label {
    margin-right: 18px;
    font-weight: 500;
}

.form-select {
    width: 100%;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.input-group-text {
    background: #007C7A;
    color: #fff;
    border: 1px solid #007C7A;
    font-weight: 600;
}

@media(max-width:768px) {

    .gender-list label {
        display: block;
        margin-bottom: 8px;
    }

    .input-group {
        width: 100%;
    }
}

.patient-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #d9e6e8;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
   
}

.patient-card-header {
    background: #007C7A;
    color: white;
    padding: 5px 5px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px 12px 0 0;
}

.patient-card-body {
    padding: 1px;
}

.form-label {
    font-weight: 600;
    color: #333;
    margin-top: 8px;
}

.form-control {
    width: 100%;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #007C7A;
}

    .form-control:focus {
        border-color: #007C7A;
        box-shadow: 0 0 6px rgba(0,124,122,.25);
    }

.appointment-box {
    background: #EAF8F7;
    border-left: 5px solid #007C7A;
    padding: 5px 5px;
    border-radius: 8px;
}

.appointment-time {
    color: #0056b3;
    font-size: 17px;
    font-weight: 600;
}

@media(max-width:768px) {

    .patient-card-body {
        padding: 1px;
    }

    .form-label {
        margin-bottom: 6px;
    }
}

.country-code {
    width: 70px !important;
    background: #0b7d79;
    color: #fff;
    border: 1px solid #0b7d79;
    border-radius: 8px 0 0 8px;
    text-align: center;
    font-weight: 600;
    pointer-events: none;
}

.input-group {
    display: flex;
}

    .input-group .country-code {
        flex: 0 0 70px;
    }

    .input-group .form-control {
        border-radius: 0 8px 8px 0;
    }

/* Important Information Box */

.appointment-alert {
    background: #FFF8E8;
    border: 1px solid #F5D78E;
    border-left: 5px solid #F39C12;
    border-radius: 10px;
    padding: 10px 10px;
    color: #4A4A4A;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

    .appointment-alert strong {
        display: block;
        font-size: 12px;
        color: #D35400;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .appointment-alert ul {
        margin: 0;
        padding-left: 10px;
    }

        .appointment-alert ul li {
            margin-bottom: 8px;
            line-height: 24px;
            color: #555;
        }

            .appointment-alert ul li:last-child {
                margin-bottom: 0;
            }

    .appointment-alert b {
        color: #C0392B;
    }

/* Mobile */

@media (max-width:768px) {

    .appointment-alert {
        padding: 10px 10px;
        font-size: 12px;
    }

        .appointment-alert strong {
            font-size: 12px;
        }

        .appointment-alert ul {
            padding-left: 15px;
        }

            .appointment-alert ul li {
                line-height: 15px;
            }
}

/* Common Button Style */

.btnHospital,
.btnPayNow {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 3px 8px rgba(0,0,0,.15);
}

/* Book & Pay at Hospital */

.btnHospital {
    background: #6C757D;
    color: #fff;
}

    .btnHospital:hover {
        background: #5A6268;
        transform: translateY(-2px);
    }

/* Book & Pay Now */

.btnPayNow {
    background: linear-gradient(90deg,#007C7A,#009688);
    color: #fff;
}

    .btnPayNow:hover {
        background: linear-gradient(90deg,#006B69,#007C7A);
        transform: translateY(-2px);
    }

    /* Click Effect */

    .btnHospital:active,
    .btnPayNow:active {
        transform: scale(.98);
    }

    /* Disabled */

    .btnHospital:disabled,
    .btnPayNow:disabled {
        background: #CFCFCF;
        cursor: not-allowed;
        box-shadow: none;
    }

/* Mobile */

@media (max-width:768px) {

    .btnHospital,
    .btnPayNow {
        font-size: 15px;
        height: 48px;
    }
}
/* Main Combo */
.RadComboBox {
    width: 100% !important;
    font-family: 'Segoe UI', Arial, sans-serif !important;
}

/* Input Box */
.RadComboBox_Default .rcbInput {
    height: 44px !important;
    line-height: 44px !important;
    border: 1px solid #ced4da !important;
    border-radius: 8px 0 0 8px !important;
    padding: 0 12px !important;
    font-size: 14px !important;
    background: #fff !important;
    color: #333 !important;
}

/* Arrow */
.RadComboBox_Default .rcbArrowCell {
    width: 42px !important;
    background: #007C7A !important;
    border: 1px solid #007C7A !important;
    border-radius: 0 8px 8px 0 !important;
}

/* Arrow Icon */
.RadComboBox_Default .rcbArrowCell a {
    color: #fff !important;
}

/* Hover */
.RadComboBox_Default .rcbHovered .rcbInput,
.RadComboBox_Default .rcbFocused .rcbInput {
    border-color: #007C7A !important;
    box-shadow: 0 0 5px rgba(0,124,122,.25);
}

/* Dropdown List */
.RadComboBoxDropDown_Default {
    border-radius: 8px !important;
    border: 1px solid #007C7A !important;
}

.RadComboBoxDropDown_Default .rcbItem,
.RadComboBoxDropDown_Default .rcbHovered {
    padding: 8px 12px !important;
    font-size: 14px !important;
}

.RadComboBoxDropDown_Default .rcbHovered {
    background: #EAF8F7 !important;
    color: #007C7A !important;
}
.RadComboBox {
    width: 100% !important;
}

.RadComboBox table {
    width: 100% !important;
}

.RadComboBox input {
    height: 42px !important;
    border: 1px solid #ced4da !important;
    border-radius: 6px !important;
    padding: 8px 10px !important;
}

.RadComboBox .rcbArrowCell {
    background: #007C7A !important;
}
.RadComboBoxDropDown {
    max-height: 250px !important;
    overflow-y: auto !important;
}

.RadComboBoxDropDown .rcbList {
    max-height: 250px !important;
    overflow-y: auto !important;
}

.RadComboBoxDropDown .rcbItem {
    padding: 6px 10px !important;
    white-space: nowrap;
}

.RadComboBoxDropDown .rcbHovered {
    background: #007C7A !important;
    color: #fff !important;
}

/* Slot Grid */
.slotGrid {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 6px !important;
}

/* Each GridView row */
.slotGrid tr {
    display: table-row !important;
}

/* Slot cell */
.slotGrid td {
    padding: 4px !important;
    border: none !important;
    text-align: center;
}

/* Slot button */
.slot-time-btn {
    display: block !important;
    width: 100% !important;
    min-height: 42px;

    padding: 9px 6px !important;

    background: #EAF8F7 !important;
    border: 1px solid #007C7A !important;
    border-radius: 6px !important;

    color: #007C7A !important;
    text-align: center !important;
    text-decoration: none !important;

    font-size: 13px !important;
    font-weight: 600 !important;

    box-sizing: border-box;
}

/* Hover */
.slot-time-btn:hover {
    background: #007C7A !important;
    color: #fff !important;
}