* {
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --mainColor: rgb(256 256 256);
    --fontColor: rgb(0 0 0);
    --fontSize: 14px;
    --fontSizeForPrint: 13px;
    --fontSizeFor360:6px
}

body {
    background: rgb(220 220 220);
    font-family: "Open Sans";
    /* font-weight: normal; */
    scroll-behavior: smooth;
}

input:focus,
button:focus,
textarea:focus,
select:focus {
    outline: none;
}

input,
textarea,
select {
    border: none;
    font-family: "Open Sans";
    /* text-transform: uppercase; */
}

textarea {
    resize: none;
}

.common_button {
    font-size: var(--fontSize);
    width: fit-content;
    padding: 5px 36px;
    background: #007eff;
    color: white;
    cursor: pointer;
}

.popup_menu {
    background: none;
    color: black;
    cursor: pointer;
}

.popup_menu:hover {
    color: #0b0bb1;
}

.cancel_save_btn_containr {
    display: flex;
    position: absolute;
    bottom: 28px;
    right: 28px;
}

.clear_filter_btn {
    /* border: 1px solid #c3baba; */
    padding: 5px;
    margin-left: 4px;
    cursor: pointer;
    color: blue;
}

.clear_filter_btn:hover {
    border: 1px solid #e91e63;
    padding: 5px;
    cursor: pointer;
    color: #f44336;
    /* background: #f44336; */
}

.cancel_button {
    padding: 6px 52px;
    border-radius: 3px;
    margin-right: 6px;
    background: white;
    color: gray;
    font-size: var(--fontSize);
    width: fit-content;
    cursor: pointer;
}

.cancel_button:hover {
    background: #e1e1e1;
    color: #242323;
}

.save_button {
    font-size: var(--fontSize);
    width: fit-content;
    padding: 5px 36px;
    background: #007eff;
    color: white;
    cursor: pointer;
    padding: 6px 52px;
    border-radius: 3px;
}

#bill_patient_profile_containr input {
    text-transform: uppercase;
}

.comman_btn {
    padding: 6px 52px;
    border-radius: 3px;
    cursor: pointer;
    width: fit-content;
    font-size: var(--fontSize);
    background: #d0d5df;
}

.excel_btn {
    padding: 6px 6px;
    background: #ede9e9;
}

.btn_save:focus,
.btn_save:hover {
    background: #007eff;
    color: white;
}

.btn_cancel:focus,
.btn_cancel:hover {
    background: #ff0000;
    color: white;
}

/* report */

.add_dept_section_btn {
    background: #11b911;
    color: white;
    padding: 0 6px;
    margin: 0 10px;
    width: 62px;
    text-align: center;
    cursor: pointer;
}

.reportformatOpsBox {
    margin: 10px;
    text-align: center;
    border: 1px solid gainsboro;
    border-radius: 3px;
    padding: 10px 16px;
    cursor: pointer;
}

.reportformatOpsBox p {
    font-weight: bold;
    margin-bottom: 6px;
}

#report_generation_final_interface select {
    font-size: 15px;
    border: 1px solid gainsboro;
}

#report_settings_window input:focus,
#report_settings_window textarea:focus,
#report_settings_window select:focus,
#report_generation_final_interface textarea:focus,
#report_generation_final_interface select:focus,
#report_generation_final_interface input:focus {
    border: 1px solid blue;
}

.active_doctor_on_summary {
    background: #0b0bb1;
    color: rgb(256 256 256);
}

/* Style the toggle container */
.toggle-container {
    position: relative;
    display: inline-block;
    width: 36px;
    height: 18px;
  }
  
  /* Hide the checkbox */
  #toggle {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* Style the toggle switch */
  .toggle-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #979494;
    transition: .4s ease-in-out;
    border-radius: 10px;
  }
  
  /* Style the toggle switch when checked */
  #toggle:checked + .toggle-switch {
    background-color: #4CAF50;
  }
  
  /* Create a slider effect */
  .toggle-switch::before {
    content: "";
    position: absolute;
    width: 16px;
    left: 2px;
    top: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s ease-in-out;
    border-radius: 10px;
  }
  
  #toggle:checked + .toggle-switch::before {
    transform: translateX(16px);
  }

  #company_message {
    display: none;
    position: fixed;
    z-index: 10;
    background: red;
    color: white;
    padding: 6px 10px;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    text-align: center;
  }

  