@import url("https://fonts.googleapis.com/css2?family=Alkatra:wght@400..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
.readonly-disabled {
    background-color: #e9ecef !important;
    opacity: 1;
    pointer-events: none;
    cursor: not-allowed;
}

.readonly-disabled:focus {
    box-shadow: none !important;
    border-color: #ced4da !important;
}

body {
    font-family: "Lato", system-ui;
}

input#dob {
    padding: 6px 24px;
}

:root {
    --primary-color: #89c24a;
    --primarylight-color: #ffffe6;
    --primarydark-color: #47691e;
    --secondary-color: #437a7c;
    --textprimary-color: #0d1b34;
    --textgrey-color: #575757;
    --bg-white: #ffffff;
    --sidebar-width: 280px;
    --sidebartoggle-width: 80px;
    /* --sidebar-left: -280px; */
    --togglesidebar-width: 0px;
    --togglesidebar-left: -280px;
    --secondary-clr: #ffc107;
    --secondary-light: #fff4e0;
}

/* universal css starts */

h2 {
    color: var(--textprimary-color);
}

a {
    text-decoration: none;
}
/* p{
  color: var(--textgrey-color);
} */

.modal-backdrop {
    --bs-backdrop-zindex: 0;
    --bs-backdrop-opacity: 0;
}

/* Optional: Override Bootstrap validation styles */
input:invalid {
    box-shadow: none;
    /* Remove the default shadow */
}

input:valid {
    box-shadow: none;
    /* Remove the default shadow */
}

.user-icon {
    border: 2px solid var(--primarylight-color);
    color: var(--primary-color);
    border-radius: 50%;
    padding: 5px;
}

.border-red {
    border: 1px solid red;
}

.choices {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition:
        border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: var(--primary-color);
    border: none;
    color: var(--bg-white);
    word-break: break-all;
    box-sizing: border-box;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: var(--bg-white);
}

.patientBasicDetails {
    margin: 1%;
    font-size: 14px;
    font-weight: 600;
}

.fill-by-provider {
    color: rgb(10, 82, 120) !important;
}

.form-control {
    padding: 12px 16px;
}

.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-check-input.is-check-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.mb-3.is-invalid .choices__inner {
    border: 1px solid #dc3545 !important;
    border-radius: 5px;
}

.choices.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.primary-btn {
    background: var(--primary-color);
    font-size: 16px;
    padding: 12px 20px;
    color: #ffffff;
    font-weight: 500;
}

.primary-btn-sm {
    background: var(--primary-color);
    font-size: 14px;
    color: #fff;
    padding: 9px;
}

.primary-btn:hover,
.primary-btn-sm:hover {
    background-color: var(--primarydark-color);
    color: #fff;
}

.primary-text {
    color: var(--primary-color);
}

/* universal css end */

/* Login css starts */

.leftside {
    height: 100vh;
    background-color: #eff0c6;
    position: relative;
}

.right-image {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    height: 100%;
    object-fit: contain;
}

.rightside {
    position: relative;
}

.login-form {
    width: 100%;
    max-width: 550px;
    padding: 32px 40px;
    border-radius: 4px;
}

.login-form img {
    width: 60px;
    object-fit: contain;
}

.sidebar-sub-li {
    background-color: blanchedalmond;
    border-radius: 5px;
}

.unauthorized-icon {
    margin: auto;
    margin-top: 4%;
    width: 50%;
    background-color: var(--primarylight-color);
    border: 5px solid var(--primary-color);
    border-radius: 12px;
}
.unauthorized-icon > span {
    font-size: 250px;
    color: var(--primary-color);
}

.unauthorized-content {
    margin: 5%;
}

/* Login css ends */

/* Dashboard css */

.page {
    /* display: flex; */
    min-height: 100vh;
    /* flex-direction: column; */
    /* justify-content: center; */
}

/* sidebar css starts */

.sidebar {
    width: var(--sidebar-width);
    position: fixed;
    left: 0;
    top: 0;
    background-color: var(--bg-white);
    height: 100vh;
    box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in;
    z-index: 3;
}

.toggle-sidebar {
    cursor: pointer;
}

.sidebarclose {
    cursor: pointer;
    color: var(--textprimary-color);
}

.sidebar.close {
    width: var(--sidebartoggle-width);
}

.sidebar.close .nav-link-heading {
    display: none;
}

.sidebar.close .dashboar-icon:hover + .nav-link-heading {
    display: block;
    position: absolute;
    right: 0px;
    white-space: nowrap;
    translate: 95% 0%;
    padding: 4px 8px;
    color: var(--bg-white);
    background: var(--textprimary-color);
    border-radius: 4px;
}

.sidebar .nav-pills .nav-link {
    fill: var(--textgrey-color);
}

.sidebar .nav-pills .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--textgrey-color);
    font-weight: 400;
    /* padding: 7px 8px; */
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-size: 15px;
}

.sidebar .nav-pills :is(.nav-link:hover, .nav-link.active) {
    background-color: var(--primary-color);
    color: var(--bg-white);
    /* font-weight: 600; */
}

.sidebar .nav-pills :is(.nav-link:hover, .nav-link.active) .dashboar-icon {
    background-color: var(--bg-white);
}

.sidebar .nav-pills :is(.nav-link:hover, .nav-link.active) svg path {
    fill: var(--bg-white);
}

.sidebar .nav-pills .nav-link .dashboar-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primarylight-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar.close .nav-pills .nav-link .dashboar-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto;
}

.sidebar.close .nav-pills .nav-link svg {
    width: 20px;
    height: 20px;
}

.navlink-container {
    width: 100%;
    height: 100%;
    flex-wrap: nowrap;
    gap: 10px;
}

.header .dropdown-menu {
    transform: translate3d(0px, 54px, 0px) !important;
}

.nav-link.active + .collapse:not(.show) {
    display: block;
}

/* Company logo */
.sidebar .logo {
    height: 68px;
    width: 100%;
    text-align: center;
    padding: 5px;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar .logo img {
    width: 60px;
}

.sidebar.close .logo img {
    width: 40px;
}

.submenu > li {
    margin-top: 5px;
}

/* User Profile */
.user-profile-content h6 {
    color: var(--navlink-color);
    font-size: 16px;
    font-weight: 600;
}

.user-profile {
    display: flex;
    gap: 16px;
    padding: 0px;
}

.user-profile img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 0px;
}

/* Leftside Navigation */

.sidebar .nav-link:focus {
    background: none;
    color: var(--text-white);
}

.sidebar-menu {
    overflow: auto;
}

.sidebar-menu::-webkit-scrollbar {
    display: none;
}

/* Left Sidebar  ends */

/* header Sidebar  starts */

.header {
    position: sticky;
    top: 0px;
    height: 68px;
    margin-left: var(--sidebar-width);
    padding: 13px 24px;
    transition: all 0.3s ease-in;
    background-color: var(--bg-white);
    box-shadow: 14px 17px 40px 4px rgba(112, 144, 176, 0.08);
    z-index: 2;
    transition: all 0.3s ease-in;
}

.hamberg {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    /* background-color: var(--primarylight-color); */
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar.close + .header,
.sidebar.close ~ main {
    margin-left: var(--sidebartoggle-width);
    z-index: 0;
}

/* header Sidebar  ends */

/* Main content starts */

.main-content {
    background-color: #d8e3d7;
    margin-left: var(--sidebar-width);
    padding: 24px;
    z-index: 1;
    transition: all 0.3s ease-in;
    min-height: calc(100vh - 68px);
}

/* .inner-content {
  min-height: calc(100vh - 120px);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #DDE2EE;
  background: var(--bg-white);
} */

.inner-content {
    /* min-height: calc(100vh - 120px); */
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #dde2ee;
    background: var(--bg-white);
    /* overflow-y: auto;
    height: 100%;
    position: relative;
    display: block;
    max-height: calc(100vh - 200px); */
}

/* Facility css starts*/

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.section-header h5 {
    /* font-size: 18px; */
    color: var(--textprimary-color);
}

.section-header .primary-btn {
    font-size: 16px;
    color: var(--bg-white);
    padding: 8px 12px;
}

.status-table table {
    font-size: 15px;
    table-layout: auto;
    /* min-width: 1200px; */
}

.status-table .dataTables_filter {
    margin-bottom: 12px;
}

.status-table div.dt-container {
    width: 100%;
    margin: 0 auto;
}

.status-table thead tr th {
    white-space: nowrap;
    font-weight: 500;
}

.status-table
    :is(
        table.dataTable th.dt-type-numeric,
        table.dataTable th.dt-type-date,
        table.dataTable td.dt-type-numeric,
        table.dataTable td.dt-type-date
    ) {
    text-align: left;
}

.status-table table thead tr th {
    background-color: var(--primary-color) !important;
    color: var(--bg-white);
}

.status-table .table-bordered > :not(caption) > * > * {
    border-right: 0px;
    border-left: 0px;
}

/* .status-table table tbody tr td:first-child {
  border-left: 1px solid #e3e3e3;
}

.status-table table tbody tr td:last-child {
  border-right: 1px solid #e3e3e3;
} */

.status-table .dt-search .form-control {
    padding: 4px 16px;
}

.status-table .disabled > .page-link,
.status-table .page-link.disabled {
    background-color: var(--bg-white);
}

.status-table .active > .page-link,
.status-table .page-link.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.status-table .actionbtn {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-table .actionbtn .btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--secondary-light);
    border: 1px solid var(--secondary-clr);
}

.status-table .sticky-icon svg {
    stroke: var(--secondary-clr);
}

/* .customertable-layout table thead tr th:first-child , .customertable-layout table tbody tr td:first-child {
  width: 80px;
}

.customertable-layout table thead tr th:nth-child(n + 4), .customertable-layout table tbody tr td:nth-child(n + 4) {
 width: 200px;
}
.customertable-layout table thead tr th:last-child , .customertable-layout table tbody tr td:last-child {
  width: 180px;
} */

.modal-header {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.modal-header h1 {
    color: var(--bg-white);
    font-weight: 500;
}

.custombtn {
    padding: 8px 20px;
    border-radius: 4px;
    border: 1px solid #e3e3e3;
}

.primarybutton {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
}

.cancelbtn {
    border: 1px solid #e3e3e3;
    background-color: var(--textgrey-color);
    color: var(--bg-white);
}

.form-layout {
    margin-bottom: 28px;
    padding: 12px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.form-layout h6 {
    padding: 8px 16px;
    background-color: var(--primarylight-color);
}

.modal-body {
    padding: 20px 20px;
}

.requiredfield::after {
    content: "*";
    color: #ff3b41;
    margin-left: 2px;
}

.modal .form-control {
    padding: 7px 16px;
}

.modal .form-control.is-invalid {
    padding: 7px 30px 7px 7px;
}

.modal select.form-control {
    appearance: auto;
}

/* Facility css ends */

/* Toggle Icon */
.custom-toggle {
    display: flex;
    align-items: center;
}

.custom-toggle input {
    display: none;
}

.custom-toggle .switch {
    width: 60px;
    height: 30px;
    background-color: #ccc;
    border-radius: 15px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.custom-toggle .switch:before {
    content: "";
    width: 25px;
    height: 25px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.custom-toggle input:checked + .switch {
    background-color: var(--primary-color) !important;
}

.custom-toggle input:checked + .switch:before {
    transform: translateX(30px);
}

table i {
    transition: 0.3s all;
}

table i.rotate {
    transform: rotate(-180deg);
}

.cstm-accordion {
    position: sticky;
    /* top: 80px; */
}

.closeBtn {
    border: none;
    background: none;
    font-size: 24px;
    color: white;
}

.form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #4a6d36;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(74 109 54 / 25%);
}

.choices__inner:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #4a6d36;
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgb(74 109 54 / 25%);
}

.choices__inner {
    border: none;
}

.choices__item.choices__item--choice.choices__notice.has-no-results {
    background: #ffd9d9;
    color: #ff4e4e;
}

.notes_head {
    font-weight: 500;
}

.cstm-btn.btn:focus-visible {
    background-color: var(--primary-color);
}

.backtologin {
    text-decoration: none;
    color: var(--primarydark-color);
}

.cstm-input-valide.is-invalid .pass-show-hide {
    right: 6%;
}

.exp-icon {
    background: #ffd0d0;
    padding: 5px;
    font-size: 34px;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 36px;
    color: #ff1e1e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.error-div {
    background: #ffeaea;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 10px;
}

.error-div h4 {
    color: #ff1e1e;
    font-weight: 600;
}

.error-div p {
    color: var(--textgrey-color);
}

.permission-label {
    display: flex;
    align-items: center; /* Center vertically */
    min-height: 3rem;
}

.appointment-status-icon {
    background-color: #ffffff;
    display: flex;
    align-items: center;
    height: 50px;
    margin: 0 5px;
}
.pdf-page {
    margin: 10px 0; /* Space between pages */
}
canvas {
    width: 100%; /* Make canvas responsive */
    height: auto; /* Maintain aspect ratio */
}
.provider-not-assist {
    color: #ef0e0eff;
    border: 2px solid #ef0e0eff;
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 45px;
    padding: 10px;
    font-size: 28px;
    margin: auto 8px;
}
.leftBorder {
    border-left: 5px solid #f7b054;
}
.provider-assist {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background-color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 45px;
    padding: 10px;
    font-size: 28px;
    margin: auto 8px;
}
.fa-check {
    position: absolute;
    margin-top: 20px;
    margin-left: 7px;
    color: olivedrab;
}
.notesContainer,
.formsContainer {
    border: 1px solid var(--primary-color);
    border-radius: 6px;
    display: none;
    justify-content: center;
    align-items: center;
    height: 72vh;
}
.nav-container {
    display: flex;
}
.pdf-item {
    margin-left: auto;
}
.patientPsychologyInfo {
    font-weight: 600;
    margin-bottom: 5px;
}
.psychology_notes_head {
    border-bottom: 2px solid #000;
    width: 65%;
    padding: 0 5px;
}
.pdf-item > a {
    font-size: 25px;
    color: var(--primary-color);
}
#pdfNotesView,
#pdfFormView {
    display: none;
}

.checkbox {
    border-color: var(--primary-color);
}

#pdfFormView {
    margin-top: 18px;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    display: grid;
    border-radius: 50%;
    background:
        linear-gradient(
                0deg,
                rgba(138, 194, 75, 0.5) 30%,
                rgba(138, 194, 75, 0) 0 70%,
                rgba(138, 194, 75, 1) 0
            )
            50%/8% 100%,
        linear-gradient(
                90deg,
                rgba(138, 194, 75, 0.25) 30%,
                rgba(138, 194, 75, 0) 0 70%,
                rgba(138, 194, 75, 0.75) 0
            )
            50%/100% 8%;
    background-repeat: no-repeat;
    animation: l23 1s infinite steps(12);
}
.loader::before,
.loader::after {
    content: "";
    grid-area: 1/1;
    border-radius: 50%;
    background: inherit;
    opacity: 0.915;
    transform: rotate(30deg);
}
.loader::after {
    opacity: 0.83;
    transform: rotate(60deg);
}
@keyframes l23 {
    100% {
        transform: rotate(1turn);
    }
}
.full_eye {
    display: none;
}

#prsRecordTable {
    border-collapse: collapse;
    width: 100%;
    margin-top: 1%;
}

#prsRecordTable tr,
#prsRecordTable th,
#prsRecordTable td {
    border: 1px solid #000;
    text-align: center;
}

#prsRecordTable .prs-inside-table tr,
#prsRecordTable .prs-inside-table th,
#prsRecordTable .prs-inside-table td {
    border: none;
    text-align: left;
}

.form-scores {
    text-align: left;
    font-weight: 900;
    padding-left: 2px;
    font-size: 18px;
}

.prs-content .record {
    margin: 10px 0;
    padding: 10px 0;
    border-bottom: 1px dashed #000;
}
.prs-content .record:last-child {
    border-bottom: none;
}
.width-100 {
    width: 100%;
}

.prs-para {
    font-weight: 600;
    color: rgb(10, 82, 120);
    margin: 0;
}

.prs-bold-record {
    font-weight: 900;
    color: rgb(9 9 9);
    margin: 0;
    font-size: 18px;
}

.frm-title {
    text-align: center;
    font-weight: 600;
}

.addendum-records {
    text-align: left;
}

.schizo-rule-outs-table,
.schizo-rule-outs-table tr,
.schizo-rule-outs-table td {
    border: 1px solid black;
    border-collapse: collapse;
}

.schizo-rule-outs-table th,
.schizo-rule-outs-table td {
    width: 33.3%;
}

.rule-outs-title th,
.rule-outs-head td {
    padding-left: 10px;
}

.rule-outs-option td {
    text-align: center;
}

.rule-outs-option th {
    padding-left: 20px;
}

.schizo-rule-outs-table .height-th {
    height: 1.8rem;
}

.large-record-input-field {
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    display: block;
    overflow: hidden;
    min-height: 20px;
    line-height: 20px;
    word-break: break-all;
    color: rgb(10, 82, 120);
    font-weight: 600;
    margin-top: 5px;
}

.d-flex-wrap-cls {
    display: flex;
    flex-wrap: wrap;
}

.font-wt-600 {
    font-weight: 600;
}

.p-top-10 {
    padding-top: 10px;
}

.m-top-10 {
    margin-top: 10px;
}

input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #4f4d4d;
    border-radius: 50%;
    display: inline-grid;
    place-content: center;
    cursor: pointer;
    vertical-align: middle;
}

input[type="radio"]::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    transform: scale(0);
    transition: 100ms transform ease-in-out;
    background-color: #4a6d36;
}

input[type="radio"]:checked::before {
    transform: scale(1);
}

input[type="radio"]:checked {
    border-color: #4a6d36;
}

#pdfView {
    width: 100%;
    height: 800px;
    border: none;
    transition: height 0.3s ease;
}

.icon-shrink {
    display: none;
}

.icon-shrink {
    display: none;
}

.is-maximized .icon-expand {
    display: none !important;
}

.is-maximized .icon-shrink {
    display: inline-block !important;
}

.modal-dialog.is-maximized,
.modal-dialog.is-maximized .modal-content,
.modal-dialog.is-maximized .modal-body {
    height: 100vh; /* Force the modal to fill the screen */
    margin: 0;
    max-width: 100%;
}

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #ffbe48;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    cursor: pointer;
    background: var(--primary-color);
}
.form-scores span:not(:last-child)::after {
    content: ", ";
}
.col > select {
    -webkit-appearance: menulist !important;
    -moz-appearance: menulist !important;
    appearance: menulist !important;
}

.staff_wrap .choices__list--dropdown .choices__list,
.staff_wrap .choices__list[aria-expanded] .choices__list {
    position: relative;
    max-height: 220px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.patient-header img {
    border-radius: 8px;
}

.nav-tabs .nav-link {
    font-size: 14px;
}

.point-click-badge {
    padding: 2px 5px;
    border-radius: 5px;
    position: absolute;
    top: 43px;
    left: 200px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.pacehr-tabs .nav-link {
    color: #6c757d;
    font-size: 13px;
    padding: 8px 12px;
    border: none !important;
}
.pacehr-tabs .nav-link.active {
    color: #009ef7 !important;
    background: transparent !important;
    font-weight: 500;
}
/* Blue bar for Encounter Search */
.encounter-toolbar {
    background-color: #e1f5fe;
    padding: 8px 15px;
    border-radius: 4px;
}
.encounter-header-text {
    color: #8898aa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Rectangular Search Box */
.search-container {
    display: flex;
    background: #fff;
    border: 1px solid #ccc;
    height: 28px;
    align-items: center;
    width: 250px;
}
.search-container input {
    border: none;
    outline: none;
    padding-left: 8px;
    font-size: 12px;
    width: 100%;
    background: transparent;
}
.search-container button {
    border: none;
    background: none;
    padding-right: 5px;
    color: #555;
    cursor: pointer;
}

/* Action Buttons: Plus and Download */
.btn-icon {
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 2px;
    color: white;
    cursor: pointer;
}
.btn-plus {
    background-color: #009ef7;
}
.btn-download {
    background-color: #17a2b8;
}

/* add gap in encounter tab */
.gap-4 {
    gap: 5.5rem !important;
}

/* encounter tab */
.encounter-header-text a {
    color: #7e8299;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}
.encounter-header-text a:hover {
    color: #009ef7;
}

/* Custom width for the Select Event Modal */
.modal-event {
    max-width: 550px;
    margin-top: 50px;
}

/* Header Separator */
.modal-event .modal-header {
    border-bottom: 1px solid #ebedf3 !important;
    padding: 12px 20px;
}

/* Table Header Separator */
.modal-event thead th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ebedf3 !important;
    color: #b5b5c3;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px;
}

/* Row Styling */
.modal-event tbody td {
    border-bottom: 1px solid #f3f6f9;
    padding: 12px 10px;
    font-size: 12px;
}

/* Action Buttons */
.btn-skip {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 15px;
    font-size: 12px;
}
.btn-create {
    background-color: #009ef7;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 15px;
    font-size: 12px;
}
.add_encounter {
    background-color: #8ac24a;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.download_encounter_report {
    background-color: #17a2b8;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Tabs Styling */
#patientTabs {
    border-bottom: 1px solid #e6e6e6;
    gap: 6px;
}

#patientTabs .nav-link {
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

#patientTabs .nav-link:hover {
    background: #f5f7fb;
    color: #0d6efd;
}

#patientTabs .nav-link.active {
    background: #8ac24a;
    color: #fff;
    font-weight: 500;
}

/* Tab content */
.tab-content {
    background: #fff;
    border-top: none;
}

/* Encounter Toolbar */
.encounter-toolbar {
    padding: 8px 4px;
    border-bottom: 1px solid #eee;
}

/* Header links */
.header-link {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.header-link:hover {
    color: #0d6efd;
}

.header-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #0d6efd;
}

/* Search */
.search-container {
    border-radius: 6px;
    overflow: hidden;
}

.search-container input {
    font-size: 12px;
}

/* Action icons */

.action-icons button {
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

/* Table look */
.attachment-table {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

/* Header */
.attachment-table thead th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

/* Rows */
/* .attachment-table tbody tr {
    transition: all 0.2s ease;
} */

/* Type badge */
.type-badge {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 20px;
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 500;
}

/* Buttons */
.action-btn {
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

/* Icon spacing */
.action-btn i {
    font-size: 14px;
}
/* .attachment-table tbody tr:active {
    transform: scale(0.99);
} */
.download-btn.loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    margin-left: 5px;
    animation: spin 1s linear infinite;
}

.notes-table {
    max-height: 300px;
    overflow-y: auto;
}

.table-hover tbody tr:hover {
    background: #eef7f5;
}

.nav-pills .nav-link.active {
    background: #3fa9f5;
}
.dashbord-facility-dropdown {
    width: 300px;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 30px;
}

.staff_wrap .choices__list--dropdown .choices__list,
.staff_wrap .choices__list[aria-expanded] .choices__list {
    position: relative;
    max-height: 220px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}
.patient-header img {
    border-radius: 8px;
}

.nav-tabs .nav-link {
    font-size: 14px;
}
.point-click-badge {
    padding: 2px 5px;
    border-radius: 5px;
    position: absolute;
    top: 43px;
    left: 200px;
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.pacehr-tabs .nav-link {
    color: #6c757d;
    font-size: 13px;
    padding: 8px 12px;
    border: none !important;
}
.pacehr-tabs .nav-link.active {
    color: #009ef7 !important;
    background: transparent !important;
    font-weight: 500;
}
/* Blue bar for Encounter Search */
.encounter-toolbar {
    background-color: #e1f5fe;
    padding: 8px 15px;
    border-radius: 4px;
}
.encounter-header-text {
    color: #8898aa;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Rectangular Search Box */
.search-container {
    display: flex;
    background: #fff;
    border: 1px solid #ccc;
    height: 28px;
    align-items: center;
    width: 250px;
}
.search-container input {
    border: none;
    outline: none;
    padding-left: 8px;
    font-size: 12px;
    width: 100%;
    background: transparent;
}
.search-container button {
    border: none;
    background: none;
    padding-right: 5px;
    color: #555;
    cursor: pointer;
}

/* Action Buttons: Plus and Download */
.btn-icon {
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 2px;
    color: white;
    cursor: pointer;
}
.btn-plus {
    background-color: #009ef7;
}
.btn-download {
    background-color: #17a2b8;
}

/* add gap in encounter tab */
.gap-4 {
    gap: 5.5rem !important;
}

/* encounter tab */
.encounter-header-text a {
    color: #7e8299;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
    cursor: pointer;
}
.encounter-header-text a:hover {
    color: #009ef7;
}

/* Custom width for the Select Event Modal */
.modal-event {
    max-width: 550px;
    margin-top: 50px;
}

/* Header Separator */
.modal-event .modal-header {
    border-bottom: 1px solid #ebedf3 !important;
    padding: 12px 20px;
}

/* Table Header Separator */
.modal-event thead th {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ebedf3 !important;
    color: #b5b5c3;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px;
}

/* Row Styling */
.modal-event tbody td {
    border-bottom: 1px solid #f3f6f9;
    padding: 12px 10px;
    font-size: 12px;
}

/* Action Buttons */
.btn-skip {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 15px;
    font-size: 12px;
}
.btn-create {
    background-color: #009ef7;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 4px 15px;
    font-size: 12px;
}
.add_encounter {
    background-color: #8ac24a;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.download_encounter_report {
    background-color: #17a2b8;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Tabs Styling */
#patientTabs {
    border-bottom: 1px solid #e6e6e6;
    gap: 6px;
}

#patientTabs .nav-link {
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

#patientTabs .nav-link:hover {
    background: #f5f7fb;
    color: #0d6efd;
}

#patientTabs .nav-link.active {
    background: #8ac24a;
    color: #fff;
    font-weight: 500;
}

/* Tab content */
.tab-content {
    background: #fff;
    border-top: none;
}

/* Encounter Toolbar */
.encounter-toolbar {
    padding: 8px 4px;
    border-bottom: 1px solid #eee;
}

/* Header links */
.header-link {
    font-size: 12px;
    color: #666;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.header-link:hover {
    color: #0d6efd;
}

.header-link:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: #0d6efd;
}

/* Search */
.search-container {
    border-radius: 6px;
    overflow: hidden;
}

.search-container input {
    font-size: 12px;
}

/* Action icons */

.action-icons button {
    border: none;
    border-radius: 6px;
    width: 32px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

/* Table look */
/* Rows */
/* .attachment-table tbody tr:hover {
    background-color: #f9fbff;
    transform: scale(1.01);
} */

/* Cells */
.attachment-table td {
    vertical-align: middle;
    font-size: 14px;
}

/* Type badge */
.type-badge {
    padding: 5px 10px !important;
    font-size: 12px;
    border-radius: 20px;
    background: #fff4d6;
    color: #b78103;
    font-weight: 600;
}

/* Buttons */
.action-btn {
    border: 1px solid #e0e0e0;
    background: #fff;
    transition: all 0.2s;
}

.action-btn:hover {
    background: #f1f5f9;
    transform: translateY(-1px);
}

/* Icon spacing */
.action-btn i {
    font-size: 14px;
}
.download-btn.loading::after {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid #ccc;
    border-top-color: #000;
    border-radius: 50%;
    margin-left: 5px;
    animation: spin 1s linear infinite;
}
.add_attachment {
    background-color: #8ac24a;
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.modal-container {
    background: #fff;
    width: 450px;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    padding: 12px 15px;
    /* border-bottom: 1px solid #d5d8dc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500; */
}

.modal-body {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 5px;
    color: #555;
}

.form-group select,
.form-group textarea,
.file-input-wrapper input {
    width: 100%;
    padding: 10px;
    border: 1px solid #d5d8dc;
    background: #ebf5fb;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.file-input-wrapper {
    display: flex;
    position: relative;
}

.browse-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 13px;
}

.modal-footer {
    padding: 0 20px 20px;
    text-align: right;
}

.upload-btn,
.tag-submit-button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #888;
}
.cancel-btn {
    background-color: #f5f5f5; /* light gray background */
    color: #333; /* dark text */
    border: 1px solid #ccc; /* subtle border */
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease-in-out;
    margin-right: 10px;
}

.cancel-btn:hover {
    background-color: #e0e0e0; /* slightly darker on hover */
    border-color: #999;
}

.cancel-btn:active {
    background-color: #d6d6d6;
    border-color: #777;
}

#general-notes .btn {
    background-color: #8ac24b;
    color: white;
}

.notes-history .border-start {
    --bs-border-opacity: 1;
    border-color: #8ac24b !important;
}

.modal-content.group-memberModal {
    left: 105%;
    margin-top: 29%;
}

.modal-header.group-memberModal {
    padding: 2px 0px 2px 6px;
}

h5.modal-title.group-memberModal {
    font-size: 17px;
}

.modal-body.group-memberModal {
    padding: 2px;
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

button#closeMemberModel {
    margin-left: auto;
    margin-right: 5px;
    display: flex;
    justify-content: center;
    border: none;
    background: none;
    font-size: 30px;
    color: white;
}
/* Sweat alert css*/
.swal-button.btn-cancel-custom {
    background-color: var(--primary-color) !important;
    color: white;
}

.swal-button.btn-cancel-custom:hover {
    background-color: #76a83f !important;
}
.swal-button.btn-success-custom {
    background-color: var(--primary-color) !important;
    color: white;
}

.swal-button.btn-success-custom:hover {
    background-color: #76a83f !important;
}

.parent-menu {
    height: calc(100vh - 180px);
    overflow: auto;
}

/* Update your CSS to include padding and layout */
.btn-cancel-custom {
    background-color: var(--primary-color) !important;
    color: white !important;
    padding: 8px 24px !important;
    border-radius: 4px !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    font-size: 16px !important;
}

/* Action Items Buttons by Rupesh Start */
.action-item-submit-btn {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
}

.action-item-submit-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
}

.action-item-draft-btn {
    background: #dda027;
    color: var(--bg-white);
    border: none;
}

.action-item-draft-btn:hover {
    background: #dda027;
    color: var(--bg-white);
    border: none;
}

/* Action Items Buttons by Rupesh End */
.large-content-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid black;
    display: block;
    overflow: hidden;
    min-height: 20px;
    line-height: 20px;
    font-weight: 600;
    color: #0a5278;
}

.padding-5 {
    padding: 5px;
}

.color-red {
    color: red;
}

/* Action Items Buttons by Rupesh Start */
.action-item-submit-btn{
    background-color: var(--primary-color) !important;
    color: var(--bg-white);
    border: none !important;
}

.action-item-submit-btn:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
}

.action-item-draft-btn {
    background: #dda027;
    color: var(--bg-white);
    border: none;
}

.action-item-draft-btn:hover {
    background: #dda027;
    color: var(--bg-white);
    border: none;
}

.action-item-icon-submitted{
    color: var(--primary-color) !important;
    background: var(--bg-white);
}
.action-item-icon-draft{
    color: #dda027;
    background: var(--bg-white);
}

/* Action Items Buttons by Rupesh End */
/* New Css 12-05-2026 */

.section-header-sort {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
}

/* New Sticky Notes CSS Rupesh Start */

.sticky-note-card {
    cursor: pointer;
    background-color: #fff9c4 !important;
    border: 1px solid #f2eab3 !important;
    border-left: 5px solid #fbc02d !important;
    transition: all 0.2s ease;
}
.sticky-note-card:hover { background-color: #fff59d !important; }
.sticky-note-card.active-note {
    background-color: #fffde7 !important;
    border-color: #8ac24b !important;
    border-left: 5px solid #8ac24b !important;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.sticky-note-meta { font-size: 0.75rem; color: #6c757d; }
.comment-badge { 
    font-size: 0.7rem;
    height: fit-content; 
    position: absolute;
    top: -5px;
    right: -5px;
    color: white;
    font-size: 12px;
    padding: 3px 5px;
    border-radius: 50%;
    font-weight: bold;
    width: auto;
}

.comment-bubble {
    background-color: #ffffff;
    border-radius: 4px;
    border-left: 3px solid #fca103 !important;
}

.comment-user { color: #fca103; font-weight: bold; font-size: 0.85rem; }
.comment-time { font-size: 0.75rem; color: #999; text-align: right; }

.status-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(0,0,0,0.1);
}
.status-pending { background-color: #FCECD9; color: #e67e22; }
.status-submitted { background-color: #FFE8D1; color: #047572; }
.status-completed { background-color: #D4EDDA; color: #155724; }
.status-walksheet { background-color: #D4EDDA; color: #8A3FFC; }
.status-cancelled { background-color: #D4EDDA; color: #DA1E28; }
.status-default   { background-color: #f8f9fa; color: #6c757d; }

/* New Sticky Notes CSS Rupesh End*/
