#new_appointment_window {
    position: fixed;
    inset: 0;
    background-color: rgb(0 0 0 / 63%);
    overflow-y: scroll;
    padding-top: 42px;
    z-index: 1;
}

#main_appointment_container {
    background: #f3f6f8fc;
    position: absolute;
    height: 550px;
    width: 954px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 14px 25px 14px 25px;
    box-shadow: 0 0 7px 0.3px #0c0b0b;
    font-size: 13px;
}

.header_bar {
    width: 242px;
    margin-top: 8px;
    border: 1px solid #c90d0d;
}

.dr_appointment_footer {
    position: absolute;
    display: flex;
    bottom: 13px;
    right: 28px;
}


/* Appointment List ------------------------*/

.billing_list_row {
    display: flex;
    background: rgb(255 255 255);
    box-shadow: 4px 4px 10px 2px rgb(220 220 220);
    margin-bottom: 1px;
    padding: 2px 0px;
    font-size: 14px;
}

.billing_list_row:hover {
    box-shadow: inset 0px 0px 3px 1px rgb(15 106 196);
}

.db_list_action {
    width: 10%;
    text-align: center;
    padding: 6px 1px;
    /* display: inline-flex; */
}

.db_list_action p {
    width: fit-content;
    background: blue;
    color: white;
    padding: 0 4px;
    border-radius: 50%;
    cursor: pointer;
    margin: 0 2px;
    font-weight: bold;
}

.db_list_action img {
    cursor: pointer;
    width: 20px;
    height: 20px;
    padding: 0px 0px;
}

.db_list_slno {
    width: 5%;
    text-align: center;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}

.db_list_billno {
    word-break: break-all;
    width: 10%;
    text-align: center;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}

.db_list_date {
    width: 10%;
    text-align: center;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}

.db_list_date span {
    font-weight: bold;
}

.db_list_patient_id {
    width: 9%;
    text-align: center;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}

.db_list_patient_name {
    width: 16%;
    text-align: left;
    padding: 6px 3px;
    word-break: break-word;
    border-left: 1px solid #0000003b;
}

.db_list_mobile {
    width: 12%;
    text-align: center;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}

.db_list_totamt {
    width: 10%;
    text-align: right;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}

.db_list_adjamt {
    width: 10%;
    text-align: right;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}

.db_list_advamt {
    width: 10%;
    text-align: right;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}

.db_list_dueamt {
    width: 10%;
    text-align: right;
    padding: 6px 3px;
    border-left: 1px solid #0000003b;
}


/* End Billing */


/* Polyclinic Doctor's */

#polyclinic_doctor_window {
    position: fixed;
    inset: 0;
    background-color: rgb(0 0 0 / 79%);
    overflow-y: scroll;
    padding-top: 42px;
    z-index: 1;
}

.polyclinic_doctor_window_inner_contnr {
    background: #d4e6f0fc;
    position: absolute;
    height: 550px;
    width: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 14px 25px 14px 25px;
    box-shadow: 0 0 7px 0.3px #0c0b0b;
    font-size: var(--fontSize);
}

#add_dr_into_clinic {
    height: 0;
    display: none;
    padding: 22px 8px;
    border: 1px solid #c4c0c0;
    border-radius: 2px;
}

#add_dr_into_clinic input {
    padding: 6px 8px;
    border: 1px solid #c4c0c0;
    border-radius: 2px;
}

#add_dr_into_clinic input:focus {
    border: 1px solid #070bf1;
}

.cd_doctor_list {
    height: 80%;
    overflow-y: scroll;
    overflow-x: scroll;
    background: white;
    font-size: var(--fontSize);
}

.cd_col_slno {
    width: 5%;
    text-align: center;
    padding: 6px 1%;
}

.cd_col_name {
    width: 40%;
    text-align: left;
    padding: 6px 1%;
}

.cd_col_speclist {
    width: 25%;
    text-align: center;
    padding: 6px 1%;
}

.cd_col_rate {
    width: 8%;
    text-align: right;
    padding: 6px 1%;
}

.cd_col_actions {
    width: 12%;
    text-align: center;
    padding: 6px 1%;
}

.cd_col_actions img {
    width: 20px;
    height: 20px;
    margin: 0 3px;
    cursor: pointer;
}