@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Black.woff2") format("woff2"),
        url("../fonts/Roboto-Black.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-BlackItalic.woff2") format("woff2"),
        url("../fonts/Roboto-BlackItalic.woff") format("woff");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Bold.woff2") format("woff2"),
        url("../fonts/Roboto-Bold.woff") format("woff");
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-BoldItalic.woff2") format("woff2"),
        url("../fonts/Roboto-BoldItalic.woff") format("woff");
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-LightItalic.woff2") format("woff2"),
        url("../fonts/Roboto-LightItalic.woff") format("woff");
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Italic.woff2") format("woff2"),
        url("../fonts/Roboto-Italic.woff") format("woff");
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Light.woff2") format("woff2"),
        url("../fonts/Roboto-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Thin.woff2") format("woff2"),
        url("../fonts/Roboto-Thin.woff") format("woff");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-ThinItalic.woff2") format("woff2"),
        url("../fonts/Roboto-ThinItalic.woff") format("woff");
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Regular.woff2") format("woff2"),
        url("../fonts/Roboto-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-Medium.woff2") format("woff2"),
        url("../fonts/Roboto-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto-MediumItalic.woff2") format("woff2"),
        url("../fonts/Roboto-MediumItalic.woff") format("woff");
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #ca2e2d;
    --secondary: #2969b3;
    --bordercolor: #ddd;
    --darkblue: #1d2b5a;
}

body {
    padding: 0;
    margin: 0;
    font-family: "Roboto";
    /* overflow: hidden; */
}

/*Login Page Css Start Here*/
.loginSection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 30px 220px;
    background: url(../images/bg_shape.png) no-repeat;
    background-position: bottom;
    background-size: contain;
    background-attachment: fixed;
    position: relative;
}

.loginSection .bgShape1 {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
}

.loginSection .bgShape2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
}

.loginSection .loginContainer {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 100px;
    position: relative;
    z-index: 1;
}

.loginSection .login_panelLeft,
.loginSection .login_panelRight {
    width: 50%;
}

.loginContentBox h1 {
    font-size: 46px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
}

.loginContentBox h1 span {
    color: var(--primary);
}

.loginContentBox p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    line-height: 30px;
    margin-bottom: 0px;
}

.loginFormBox {
    width: 90%;
    max-width: 600px;
    margin-left: auto;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
    padding: 50px;
}

.loginFormBox h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    text-align: center;
}

.loginFormBox h2 span {
    color: var(--primary);
}

.loginFormBox p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

.cstmInputBox label {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 5px;
}

.inputIconWrapper {
    position: relative;
    height: 56px;
    /* Adjust to match input height */
}

.inputIconWrapper input.form-control {
    height: 100%;
    padding-left: 15px;
    /* No left icon */
    padding-right: 45px;
    /* Space for icon on right */
    box-sizing: border-box;
}

.loginIcon {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    font-size: 22px;
    cursor: pointer;
    color: var(--secondary);
    z-index: 2;
}

/* .cstmInputBox input {
    border: 1px solid var(--bordercolor);
    padding: 20px 15px 20px 45px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.cstmInputBox .loginIcon {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    font-size: 22px;
    cursor: pointer;
    color: var(--secondary);
} */

.cstmFormSwitch input {
    height: 25px;
    min-width: 45px;
    margin: 0;
}

.forgotPassword {
    font-size: 16px;
    font-weight: 400;
    color: var(--secondary);
}

.loginBtn {
    width: 100%;
    padding: 20px 10px;
    border: none;
    border-radius: 5px;
    background-color: var(--primary);
    font-size: 18px;
    font-weight: 500;
    color: var(--white);
}

.continueWithBox span {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    white-space: nowrap;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin: 20px 0px;
}

.continueWithBox span::before {
    content: "";
    width: 100%;
    display: inline-block;
    background: var(--bordercolor);
    height: 1px;
}

.continueWithBox span::after {
    content: "";
    width: 100%;
    display: inline-block;
    background: var(--bordercolor);
    height: 1px;
}

.otheraccountLoginButton {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bordercolor);
    border-radius: 10px;
}

.loginSubmitBox > p {
    font-size: 16px;
    font-weight: 400;
    color: #000;
    margin: 20px 0px 0px;
}

.loginSubmitBox > p > a {
    color: var(--secondary);
    font-weight: 400;
}

.sitelogo {
    display: none;
    margin-bottom: 30px;
}

/*Login Page Css End Here*/

/*Dashboard Page Css Start Here*/
.adminHeaderSec {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 15px 20px;
    margin-left: 300px;
    position: sticky;
    top: 0;
    z-index: 999;
    /* transition: all 0.5s ease-in-out; */
}

.adminHeaderSec .menuBarBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 5px;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 3px;
    border: none;
}

.adminHeaderSec .headerTitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--secondary);
    margin: 0;
}

.searchInput input {
    padding: 7px 35px 7px 10px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    width: 300px;
}

.searchInput i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #7e8299;
}

.adminHeaderSec .headerRightBox {
    display: flex;
    align-items: center;
    gap: 15px;
}

.adminHeaderSec .headerRightBox > button {
    background: transparent;
    border-radius: 5px;
    color: var(--secondary);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    outline: none;
    border: 1px solid var(--bordercolor);
    padding: 7px 10px;
}

.adminHeaderSec .headerRightBox > button i {
    font-size: 18px;
}

.adminHeaderSec .headerRightBox > button:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

.cstmProfileDropdownmenu button {
    display: flex;
    align-items: center;
    background-color: transparent;
    outline: none;
    border: none;
    gap: 5px;
    padding: 0px;
}

.cstmProfileDropdownmenu button:hover,
.cstmProfileDropdownmenu button:first-child:active {
    background-color: transparent;
}

.cstmProfileDropdownmenu button::after {
    content: "";
    display: none;
}

.cstmProfileDropdownmenu button h2 {
    font-size: 16px;
    font-weight: 500;
    color: var(--black);
    margin: 0;
    text-align: end;
}

.cstmProfileDropdownmenu button span {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    margin: 0;
    text-align: end;
}

.cstmProfileDropdownmenu button .profileImgBox {
    width: 45px;
    height: 45px;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid var(--white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    display: flex;
    justify-content: center;
}

.cstmProfileDropdownmenu ul {
    padding: 0;
    overflow: hidden;
    width: 200px;
}

.cstmProfileDropdownmenu ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
    color: var(--secondary);
}

.cstmProfileDropdownmenu ul li a i {
    color: var(--primary);
}

.cstmProfileDropdownmenu ul li a:hover {
    background-color: var(--primary);
    color: var(--white);
}

.cstmProfileDropdownmenu ul li a:hover i {
    color: var(--white);
}

.cstmProfileDropdownmenu ul li {
    border-bottom: 1px solid #ddd;
}

.cstmProfileDropdownmenu ul li:last-child {
    content: "";
    border: none;
}

.sidebarSec {
    background: var(--darkblue);
    width: 300px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    /* transition: all 0.5s ease-in-out; */
    z-index: 999;
    border-right: 1px solid #ddd;
}

.sidebarSec > .logo {
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
}

.sidebarSec > .logo > .logoIconImg {
    display: none;
}

.sidebarSec .sidenavbar_Sec {
    padding: 30px 0px 0px;
    margin: 0;
    list-style: none;
}

.sidebarSec .sidenavbar_Sec > li > a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 20px;
    margin-bottom: 5px;
    position: relative;
    gap: 5px;
}

.sidebarSec .sidenavbar_Sec > li > a .navIcon {
    width: 30px;
    font-size: 18px;
    color: var(--white);
}

.sidebarSec .sidenavbar_Sec > li > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    background-color: var(--primary);
    right: 0;
    width: 7px;
    border-radius: 5px 0px 0px 5px;
    visibility: hidden;
    opacity: 0;
}

.sidebarSec .sidenavbar_Sec > li > a:hover::after,
.sidebarSec .sidenavbar_Sec > li > .activenav::after {
    content: "";
    visibility: visible;
    opacity: 1;
}

.sidebarSec .sidenavbar_Sec > li > a:hover,
.sidebarSec .sidenavbar_Sec > li > .activenav {
    background-color: var(--white);
    color: var(--black);
}

.sidebarSec .sidenavbar_Sec > li > a:hover .navIcon,
.sidebarSec .sidenavbar_Sec > li > .activenav .navIcon {
    color: var(--primary);
}

.sidebarSec .sidenavbar_Sec > li > a .angleDown {
    position: absolute;
    right: 13px;
    top: 15px;
    transition: all 0.2s ease-in-out;
}

.sidebarSec .sidenavbar_Sec > li > ul {
    display: none;
    padding: 10px 0px 15px 45px;
    background: #2d3b6a;
}

.sidebarSec .sidenavbar_Sec > li > ul li a {
    font-size: 16px;
    font-weight: 400;
    color: var(--white);
    text-decoration: none;
    padding: 5px 10px;
    margin-bottom: 5px;
    display: block;
}

.sidebarSec .sidenavbar_Sec > li > ul li:last-child a {
    margin-bottom: 0px;
}

.sidebarSec .sidenavbar_Sec > li > ul li::marker,
.sidebarSec .sidenavbar_Sec > li > ul li a:hover,
.sidebarSec .sidenavbar_Sec > li > ul li .activenav {
    color: var(--primary);
}

.sidebarSec .sidenavbar_Sec > li > .activenav .angleDown {
    transform: rotate(-180deg);
}

.dashboardBody_Sec {
    margin-left: 300px;
    padding: 30px 20px;
    /* transition: all 0.5s ease-in-out; */
    background: #f7f8fa;
}

.sectionHeader {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.sectionHeader h2 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 3px;
}

.breadcrumbNav ol li a,
.breadcrumbNav ol li {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary);
}

.cardWrapperBox {
    background-color: var(--white);
    padding: 15px;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.cardWrapperBox > h2 {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid var(--bordercolor);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.tableWrapperSec .dt-layout-row:first-child {
    margin-top: 0px;
}

.tableWrapperSec .dt-layout-row:last-child {
    margin-bottom: 0px;
}

.tableWrapperSec table tr th {
    background-color: var(--darkblue);
    color: var(--white);
    font-size: 16px;
    font-weight: 400;
    padding: 10px !important;
}

.tableWrapperSec table tr td {
    color: var(--black);
    font-size: 16px;
    font-weight: 400;
    padding: 10px !important;
    vertical-align: middle;
}

.tableWrapperSec .dt-layout-start .dt-input {
    margin-right: 5px;
}

.actionItem .editBtn,
.actionItem .viewBtn,
.actionItem .deleteBtn {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 18px;
    color: var(--secondary);
    cursor: pointer;
    text-decoration: none;
    padding: 5px;
}

.actionItem .deleteBtn {
    color: var(--primary);
}

.actionItem .deleteBtn {
    margin-top: 15;
}

.actionItem a,
.actionItem button {
    margin-right: 5px;
}

.tableWrapperSec table tr .numbericLeftAlign {
    text-align: start;
}

div.dt-container .dt-paging .dt-paging-button.current,
div.dt-container .dt-paging .dt-paging-button.current:hover,
div.dt-container .dt-paging .dt-paging-button:hover {
    background: var(--primary);
    color: var(--white) !important;
    border-color: var(--primary);
}

.tableWrapperSec .dt-scroll-headInner,
.tableWrapperSec .dt-scroll-headInner table {
    min-width: 100%;
}

.tableWrapperSec table tr td .statusCard {
    text-align: center;
    border-radius: 30px;
    padding: 3px 15px;
    display: inline-block;
    width: 120px;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

.tableWrapperSec table tr td .pendingCard {
    background: rgb(202 46 45 / 15%);
    border: 1px solid var(--primary);
    color: var(--primary);
}

.tableWrapperSec table tr td .completedCard {
    background: rgb(11 137 4 / 15%);
    border: 1px solid #0b8904;
    color: #0b8904;
}

.tableWrapperSec table tr td .assignedCard {
    background: rgb(8 98 175 / 15%);
    border: 1px solid #0862af;
    color: #0862af;
}

table.dataTable.display > tbody tr > .sorting_1 {
    box-shadow: unset;
}

table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_1,
table.dataTable.display > tbody > tr:nth-child(odd) > .sorting_1 {
    box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-stripe), 0.023);
}

table.dataTable.display tbody tr:hover > .sorting_1 {
    box-shadow: inset 0 0 0 9999px rgba(var(--dt-row-hover), 0.035);
}

/*Dashboard Page Css End Here*/

/*Dashboard Menu Click Css Start Here*/
.dashboardSlide .adminHeaderSec {
    margin-left: 80px;
}

.dashboardSlide .sidebarSec {
    width: 80px;
}

.dashboardSlide .dashboardBody_Sec {
    margin-left: 80px;
}

.dashboardSlide .sidebarSec > .logo > .logoImg {
    display: none;
}

.dashboardSlide .sidebarSec > .logo > .logoIconImg {
    display: block;
}

.dashboardSlide .sidebarSec .sidenavbar_Sec li a {
    justify-content: center;
}

.dashboardSlide .sidebarSec .sidenavbar_Sec li a > span,
.dashboardSlide .sidebarSec .sidenavbar_Sec li a > .angleDown {
    display: none;
}

.btnBox .cstmBtn,
.formBtnBox .cancelBTN,
.formBtnBox .saveBTN {
    background: var(--primary);
    color: var(--white);
    border: none;
    outline: none;
    padding: 7px 15px;
    font-size: 16px;
    font-weight: 400;
    text-transform: capitalize;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}

.cstmInputBox label {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

/**role permission css***/
.role-form-check {
    min-width: 150px;
}

/*Dashboard Menu Click Css End Here*/

/***for update password****/
.chnagePasswordContainer {
    display: flex;
    height: 100vh;
    width: 100%;
}

.chnagepassword_panelLeft {
    width: 200px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.chnagepassword_panelRight {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.chnagePasswordFormBox {
    margin-top: -14%;
    width: 100%;
    max-width: 600px;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    overflow: hidden;
}

.chnagePasswordFormBox h2 {
    font-size: 30px;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 5px;
    text-align: center;
}

.chnagePasswordFormBox h2 span {
    color: var(--primary);
}

.chnagePasswordFormBox p {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 30px;
    text-align: center;
}

/**** add user button ****/
.userAddBtn {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 30px;
    color: #14a119;
    margin-top: -1%;
    margin-left: 91%;
    font-size: 30px;
}

.fromWrapperBox {
    background-color: var(--white);
    padding: 15px;
    border-radius: 5px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.fromWrapperBox h2 {
    background: var(--darkblue);
    color: var(--black);
    padding: 10px 15px;
    margin: -15px -15px 15px -15px;
    border-bottom: 1px solid #dc3545;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    font-size: 20px;
    font-weight: 500;
    color: white;
}

/*  input styles */
.inputBoxFiled label {
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 5px;
}

.inputBoxFiled input {
    border: 1px solid var(--bordercolor);
    font-size: 16px;
    font-weight: 400;
    padding: 14px 10px;
    color: var(--black);
}

.inputBoxFiled select {
    border: 1px solid var(--bordercolor);
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
    padding: 14px 10px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Style the radio input */
.form-check-input {
    width: 25px;
    height: 25px;
    margin-top: 0.3rem;
    margin-right: 8px;
    cursor: pointer;
}

/* Style the label */
.form-check-label {
    cursor: pointer;
    font-size: 16px;
    font-weight: 400;
    color: var(--black);
}

/* Spacing between radio options */
.form-check {
    margin-right: 25px;
    display: flex;
    align-items: center;
}

.button-group {
    display: flex;
    justify-content: flex-end;
    /* Align buttons to right */
    gap: 10px;
    /* space between buttons */
    margin-top: 15px;
    /* optional spacing from above */
}

.btn-submit {
    background: var(--darkblue);
    /* Bootstrap red */
    color: white;
    border: none;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.btn-submit:hover {
    background-color: var(--darkblue);
}

.btn-back {
    background-color: white;
    color: var(--darkblue);
    border: 2px solid #e0dbdb;
    padding: 8px 16px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

/*Dashboard Menu Click Css End Here*/

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1;
    border-bottom: 1px solid #ca2e2d;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}

.panel-heading .panel-title {
    margin-bottom: 0;
}

.panel-body {
    padding: 15px;
}

li.nav-item {
    background: #fff;
    border: 1px solid #ebebeb;
    border-radius: 0;
}

.nav-pills .nav-link {
    color: gray;
    text-decoration: none;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background-color: var(--darkblue);
    color: var(--white);
    border-radius: 0;
}

.cardWrapperBox.tableWrapperSec.p-0 {
    margin-bottom: 20px;
}

h3.panel-title.cssColor {
    font-size: 18px;
    color: #1d2b5a;
    font-weight: 500;
}

.form-section .form-label {
    font-weight: 500;
}

/* Add button for patient */

.btn-custom {
    background-color: #1d2a58;
    color: white;
    /* Adjust text color for better visibility */
    border: none;
    /* Remove border if needed */
}

.btn-custom:hover {
    background-color: #f5f5f5;
    /* Optional: Darker shade on hover */
}

/**** add patient button ****/
.patientAddBtn {
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 30px;
    color: #14a119;
    margin-top: -1%;
    margin-left: 92%;
    font-size: 30px;
}

.asterisk {
    color: red;
    font-weight: 800;
}

/**************For patient Notes Datatable**********************/
#patient-notes-table {
    font-size: 12px;
    width: 100%;
}

#patient-notes-table th,
#patient-notes-table td {
    padding: 4px 12px;
    text-align: left !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

#patient-notes-table thead th {
    font-weight: 400;
    white-space: nowrap;
    position: relative;
    padding-right: 30px !important;
}

#patient-notes-table thead .sorting:after,
#patient-notes-table thead .sorting_asc:after,
#patient-notes-table thead .sorting_desc:after {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    font-size: 0.8em;
}

#patient-notes-table thead th {
    line-height: 1.5em;
}

/* Optional: Wrap long action buttons if needed */
.actionItem {
    display: flex;
    gap: 6px;
    flex-wrap: nowrap;
    align-items: center;
}
/**************For patient biling Datatable**********************/
#patient-billing-table {
    font-size: 12px;
    table-layout: fixed; /* Required for wrapping */
    width: 100%;
}

/* Header styles */
#patient-billing-table thead th {
    text-align: left !important;
    padding-right: 24px !important;
    font-weight: 400;
    white-space: nowrap; /* Keep headers on one line */
    position: relative;
}

/* Body cell styles */
#patient-billing-table tbody td {
    text-align: left !important;
    padding: 4px 6px;
    white-space: normal; /* ✅ Allow wrapping */
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Fix sorting icon overlap */
#patient-billing-table thead .sorting:after,
#patient-billing-table thead .sorting_asc:after,
#patient-billing-table thead .sorting_desc:after {
    right: 8px;
    left: auto;
    position: absolute;
}

/**************For user listing Datatable**********************/
/* #users-table th:nth-child(4) {
    padding-right: 30px;
    min-width: 120px;
    text-align: center !important;
}

#users-table td:nth-child(4) {
    text-align: center !important;
} */

/**************For patient followups Datatable**********************/
#patient-followups-table {
    font-size: 12px;
    /* table-layout: fixed; */
    width: 100%;
}

#patient-followups-table thead th {
    text-align: left !important;
    padding-right: 24px; /* Ensures space for sorting icon */
    font-weight: 400;
    white-space: nowrap;
    position: relative;
}

#patient-followups-table tbody td {
    text-align: left !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    padding: 4px 6px;
}

/* Position sorting icon properly */
#patient-followups-table thead th.sorting:after,
#patient-followups-table thead th.sorting_asc:after,
#patient-followups-table thead th.sorting_desc:after {
    right: 8px;
    left: auto;
    position: absolute;
}

/* Remove sorting icon for Action column */
#patient-followups-table thead th.no-sort.sorting,
#patient-followups-table thead th.no-sort.sorting_asc,
#patient-followups-table thead th.no-sort.sorting_desc {
    background-image: none !important;
    cursor: default !important;
}

/* 06/17/2025 add in responsive file @media screen and (min-width:1366px) and (max-width:1500px) */
.patientinfo-details {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
}

.patientinfo-details h6 {
    margin-bottom: 0px;
}

/* 06/17/2025 add @media screen and (min-width:1366px) and (max-width:1500px) */

/* 06/17/2025 add in css file  */

.section-layout {
    background-color: #fefafa;
    padding: 10px 15px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
}

.patient-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.patient-info h5,
.insurance-heading {
    color: #a94442;
}

.subscriber-details {
    display: flex;
    gap: 12px;
}

.claims-details {
    display: flex;
    gap: 12px;
}

.subscriber-details .subscriber-body {
    border-right: 1px solid #e3e3e3;
    padding: 0px 12px;
}

.claims-details .card,
.subscriber-details {
    border: none;
    padding: 8px;
    border-radius: 8px;
}

.claims-details .card-body {
    border: none;
    padding: 0px;
}

:is(.subscriber-body, .claims-details) p {
    color: var(--primary);
}

.patient-tabs label {
    color: #757784;
    margin-bottom: 0px;
}

.patient-tabs p {
    margin-bottom: 0px;
}

.answeryes {
    color: #2e7d32;
}

.answerno {
    color: #f44336;
}

.answerdate,
.answerpercentage,
.insuranceid {
    font-size: 14px;
    padding: 2px 6px;
    border-radius: 4px;
    background-color: #9e9e9e;
    width: fit-content;
    color: #ffffff;
}

.answerpercentage {
    background-color: #009688;
}

.insuranceid {
    background-color: #1565c0;
}

.answeramount {
    color: #283593;
}

.answerphone {
    color: #6a1b9a;
}

.answerna {
    color: #607d8b;
}

/* 06/17/2025 add in css file  */

.form-control {
    -webkit-appearance: select; /* For Safari */
    -moz-appearance: auto; /* For Firefox */
    appearance: auto; /* Default for modern browsers */
}

/** create button **/
.create-button {
    font-size: 30px;
}
.cardWrapperBox.tableWrapperSec h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.createPatient-button {
    font-size: 30px;
}

.createPatientFollowUp-button {
    font-size: 30px;
}

.createPatientAppeal-button {
    font-size: 30px;
}
/* Status Tabs Styling */
.custom-tabs {
    border-bottom: none;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(29, 43, 90, 0.15);
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
}

.status-tab {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    color: #1d2b5a;
    border: none;
    background-color: transparent;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.status-tab.active {
    background-color: #f5f5f5;
    border-bottom: 3px solid #ca2e2d;
    box-shadow: inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    color: #ca2e2d;
}

/* Icon Styling */
.status-icon {
    font-size: 22px;
}
.td-status-icon {
    font-size: 15px;
}

.status-icon.orange {
    color: orange;
}

.status-icon.red {
    color: #ca2e2d;
}

.status-icon.green {
    color: green;
}

/* Badge Styling */
.status-badge {
    background-color: #ffffff;
    border: 2px solid;
    font-size: 14px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-badge.orange {
    border-color: orange;
    color: orange;
}

.status-badge.red {
    border-color: orange;
    color: orange;
}

.status-badge.green {
    border-color: green;
    color: green;
}
/* public/css/eob-styles.css */

.eobsIcon {
    background-color: #f1c40f;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 16px;
    margin-right: 10px;
}

.eobs-filters-button {
    background-color: white;
    color: #3b5998;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    transition: background-color 0.3s;
}

.eobs-filters-button:hover {
    background-color: #f0f0f0;
}

.eobs-user-name span {
    font-size: 16px;
}

@media (max-width: 576px) {
    .eobs-user-name,
    .eobs-filters-button {
        margin-bottom: 8px;
    }
}

/* Style only the tabs, not the page background */
/* General Styles for Tabs */
.custom-tabs .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px; /* Added padding for better spacing */
    background-color: white; /* Default background color for inactive tabs */
    color: #1d2b5a; /* Text color for inactive tabs */
    transition: background-color 0.3s, transform 0.2s; /* Transition effects */
}

/* Active Tab Styles */
.custom-tabs .nav-link.active {
    background-color: #1d2b5a; /* Highlighted background color for active tab */
    color: white; /* Text color for active tab */
}

/* Hover Effect for Tabs */
.custom-tabs .nav-link:hover {
    background-color: #f0f0f0; /* Change background on hover */
    color: #1d2b5a; /* Text color on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
}

/* Icon Styling */
.status-icon {
    margin-right: 8px; /* Space between icon and text */
    font-size: 1.2em; /* Slightly larger icon size */
    transition: transform 0.2s ease; /* Smooth transition for icon size on hover */
}

/* Hover Effect for Icons */
.status-tab:hover .status-icon {
    transform: scale(1.2); /* Slightly enlarge icon on hover */
}

/* Text Styling */
.status-text {
    font-weight: bold; /* Make text bold for emphasis */
}

/* Icons in tab titles */
.status-icon {
    margin-right: 6px;
    font-size: 1.3em;
}

.status-icon.orange {
    color: #fd7e14;
}

.status-icon.red {
    color: rgb(207, 28, 28);
}

.status-icon.green {
    color: #28a745;
}

/* Base styling for all tables with class datatable-common */

.button-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: -5px;
    float: right;
}

.export-invoice,
.createBill-button {
    margin-top: -1.75%;
}

.eob-details {
    max-width: 700px;
    margin: 40px auto;
    background: hsl(0, 0%, 100%);
    padding: 30px 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.eob-details p {
    font-size: 1.1rem;
    margin-bottom: 18px;
    line-height: 1.5;
}

.eob-details strong {
    color: #1d2b5a;
    font-weight: 700;
}

.eob-details img {
    display: block;
    margin: 20px auto;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(29, 43, 90, 0.1);
    transition: transform 0.3s ease;
}

.eob-details img:hover {
    transform: scale(1.05);
    cursor: zoom-in;
}

.eob-details iframe {
    width: 100%;
    height: 600px;
    border-radius: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(29, 43, 90, 0.1);
    margin-top: 20px;
}

.eob-details a {
    display: inline-block;
    margin-top: 25px;
    padding: 10px 22px;
    background-color: #1d2b5a;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    box-shadow: 0 6px 12px rgba(29, 43, 90, 0.3);
    transition: background-color 0.3s ease;
}

.eob-details a:hover {
    background-color: #3a4d8f;
    box-shadow: 0 8px 18px rgba(29, 43, 90, 0.5);
    text-decoration: none;
    cursor: pointer;
}

/**********************eobs datatbale */
#eobs-list-table th,
#eobs-list-table td {
    text-align: left !important;
}

/*******************patient list *******/
.patient-list-table th {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    text-align: left !important;
}

.patient-list-table td {
    white-space: normal !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-align: left !important;
}

/* Optional: to keep consistent left alignment */
.patient-list-table th,
.patient-list-table td {
    text-align: left !important;
}

/******for patient name**/
.patient-header {
    display: inline-block;
    margin-top: -17px;
    margin-bottom: 18px;
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 5px 10px;
    border-radius: 0px;
}

/* Remove number input spinner in Chrome, Safari, and Opera */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/* Remove number input spinner in Firefox */
input[type="number"] {
    -moz-appearance: textfield; /* Use this to hide the spinner in Firefox */
}
/* Remove number input spinner in Edge and IE */
input[type="number"]::-ms-clear {
    display: none; /* Hides the clear button in Edge and Internet Explorer */
}

/**** for facility button *****/
.facility-button-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: -5px;
    float: right;
}

.facility-button,
.inactive-btn-wrapper {
    margin-top: -0.25%;
}

.inactive-btn-wrapper .btn-submit {
    background-color: #ca2e2d !important;
}

/*********************** for facility datatable*********************/
#facility-table thead th {
    text-align: left !important;
    padding-right: 24px !important;
    white-space: nowrap;
}

/* Align all column cells to the left */
#facility-table tbody td {
    text-align: left !important;
}

/* Fix sorting icon overlap */
#facility-table thead .sorting:after,
#facility-table thead .sorting_asc:after,
#facility-table thead .sorting_desc:after {
    right: 8px;
    left: auto;
}

/**************For medicals Datatable**********************/
#medicals-list-table th,
#medicals-list-table td {
    vertical-align: middle;
    white-space: nowrap;
    text-align: left;
    padding-right: 32px; /* space for sorting icons */
    max-width: 200px; /* prevent overflow */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Allow Note column to wrap */
#medicals-list-table td:nth-child(2) {
    /* Note column */
    white-space: normal !important;
    word-break: break-word;
    max-width: 250px;
}

/* Specific Column Widths */
#medicals-list-table th:nth-child(1),
#medicals-list-table td:nth-child(1),
#medicals-list-table th:nth-child(2),
#medicals-list-table td:nth-child(2),
#medicals-list-table th:nth-child(3),
#medicals-list-table td:nth-child(3),
#medicals-list-table th:nth-child(4),
#medicals-list-table td:nth-child(4) {
    width: 20%;
}

#medicals-list-table th:nth-child(5), /* Actions */
#medicals-list-table td:nth-child(5) {
    width: 6%; /* Actions column */
    text-align: center;
    padding-right: 16px;
}

/* Sorting icon positioning */
#medicals-list-table th {
    position: relative;
    cursor: pointer;
}

#medicals-list-table th.sorting::after,
#medicals-list-table th.sorting_asc::after,
#medicals-list-table th.sorting_desc::after {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    opacity: 0.8;
}
/* =========================== toggle switch button ================= */
.flipswitch {
    position: relative;
    width: 70px; /* Width of the switch */
    margin-left: 10px;
}

.flipswitch input[type="checkbox"] {
    display: none;
}

.flipswitch-label {
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #999999;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out;
}

.flipswitch-inner {
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.flipswitch-inner:before,
.flipswitch-inner:after {
    float: left;
    width: 50%;
    height: auto;
    padding: 0;
    line-height: 24px;
    font-size: 12px;
    color: white;
    font-weight: 400;
    box-sizing: border-box;
}

.flipswitch-inner:before {
    content: "Active";
    padding-left: 5px;
    background-color: #1d2b5a;
    color: #ffffff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: background-color 0.3s ease;
}

.flipswitch-inner:after {
    content: "Inactive";
    padding-right: 5px;
    background-color: #ca2e2d;
    color: #ffffff;
    text-align: right;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: background-color 0.3s ease;
}

.flipswitch-switch {
    width: 22px;
    background: #ffffff;
    border: 1px solid #999999;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    bottom: 2px;
    right: 69%;
    transition: all 0.3s ease-in 0s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.flipswitch-cb:checked + .flipswitch-label .flipswitch-inner {
    margin-left: 0;
}

.flipswitch-cb:checked + .flipswitch-label .flipswitch-switch {
    right: 0;
}

.patient-viewpage h3,
.patient-viewpage label {
    text-transform: uppercase;
}

.patient-viewpage p {
    text-transform: capitalize;
}

.note-description-container {
    /* background-color: #f9f9f9;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);  */
    max-height: 200px;
    overflow-y: auto;
}
.insurance-heading {
    /* font-size: 14px;  */
    line-height: 1.6;
    /* color: #333; */
    margin: 0;
}

#analytics-table th {
    white-space: nowrap;
    padding-right: 20px; /* space for sorting icon */
}

#analytics-table th:last-child {
    padding-right: 10px; /* less padding for Action col */
}

#analytics-table td {
    max-width: 150px; /* control max width */
    white-space: nowrap; /* keep text in one line */
    overflow: hidden;
    text-overflow: ellipsis; /* show ... for overflow */
}

/* add new css 14th july 2025 */
.permission-container .permission-check {
    width: 100%;
    max-width: 200px;
}
.custome-card {
    border: none !important;
}
.custome-card .card-header {
    background-color: #1d2b5a;
    color: #fff;
}

table.user-list-table thead tr th {
    /* width: 17%; */
    text-align: left !important;
}
table.dataTable td.dt-type-numeric {
    text-align: left !important;
}

.toggle-filter-button {
    background-color: #1d2b5a;
    border-color: #1d2b5a;
    border-radius: 5px;
    padding: 10px 20px;
    color: white;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-left: auto;
}

.toggle-filter-button:hover {
    background-color: #153052;
    border-color: #153052;
    color: white;
}
.search-icon {
    margin-right: 5px;
    color: white;
}

.filter-button-container {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 15px;
}

#facilityTabs {
    border-bottom: none;
    background-color: #ffffff;
    box-shadow: 0 4px 10px rgba(29, 43, 90, 0.15);
    border-radius: 8px;
    overflow: hidden;
    padding: 10px;
}

#facilityTabs .nav-item {
    display: inline-block;
}

#facilityTabs .nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: white;
    color: #1d2b5a;
    transition: background-color 0.3s, transform 0.2s;
}

#facilityTabs .nav-link:hover {
    background-color: #f0f0f0;
    color: #1d2b5a;
    transform: scale(1.05);
}

#facilityTabs .nav-link.active {
    background-color: #1d2b5a;
    color: white;
}

/* =========================== role toggle switch button ================= */
.custom-toggle {
    position: relative;
    width: 70px;
    flex-shrink: 0;
    margin-left: 0%;
}

.custom-toggle input[type="checkbox"] {
    display: none;
}

.custom-toggle-label {
    height: 26px;
    display: block;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #999999;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease-in-out;
}

.custom-toggle-inner {
    height: 24px;
    width: 200%;
    margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.custom-toggle-inner:before,
.custom-toggle-inner:after {
    float: left;
    width: 50%;
    height: auto;
    padding: 0;
    line-height: 24px;
    font-size: 12px;
    color: white;
    font-weight: 400;
    box-sizing: border-box;
}

.custom-toggle-inner:before {
    content: "";
    padding-left: 5px;
    background-color: #1d2b5a;
    color: #ffffff;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: background-color 0.3s ease;
}

.custom-toggle-inner:after {
    content: "";
    padding-right: 5px;
    background-color: #ca2e2d;
    color: #ffffff;
    text-align: right;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: background-color 0.3s ease;
}

.custom-toggle-switch {
    width: 22px;
    height: 22px;
    background: #ca2e2d; /* red when inactive */
    border: 1px solid #999999;
    border-radius: 50%;
    position: absolute;
    top: 1px;
    bottom: 2px;
    right: 69%;
    transition: all 0.3s ease-in 0s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.custom-toggle-cb:checked + .custom-toggle-label .custom-toggle-inner {
    margin-left: 0;
}

.custom-toggle-cb:checked + .custom-toggle-label .custom-toggle-switch {
    background: #28a745; /* green when active */
    right: 0;
}

.module-title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: 10px;
}

.toggle-label {
    flex-shrink: 0;
    display: inline-block; /* always show */
    margin-left: 8px;
    user-select: none;
}

/* loader spinner*/
.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    /* Ensure it's above other elements */
    display: none;
    /* Initially hidden */
}

.loader {
    border: 8px solid #f3f3f3;
    /* Light grey */
    border-top: 8px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*****************loader***********************/
.gif-loader-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    filter: drop-shadow(0 0 15px #1d2b5a);
}

.gif-loader {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}
.hidden {
    display: none !important;
}

button#removeSide {
    display: none;
}

.admin-editor-container {
    width: 100%;
    max-width: 1200px !important;
    margin-left: 0 !important;
    margin-right: auto;
    padding-left: -4px;
}

.ck-editor__editable_inline {
    min-height: 300px;
    width: 100%;
    box-sizing: border-box;
}

a[href*="ckeditor.com"][target="_blank"] {
    display: none !important;
}
.ck-editor__editable {
    white-space: pre-wrap !important;
    word-break: break-word !important;
}

/**************For patient appeal Datatable**********************/
#patient-appeals-table {
    font-size: 12px;
    /* table-layout: fixed; */
    width: 100%;
}

#patient-appeals-table thead th {
    text-align: left !important;
    padding-right: 24px; /* Ensures space for sorting icon */
    font-weight: 400;
    white-space: nowrap;
    position: relative;
}

#patient-appeals-table tbody td {
    text-align: left !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    padding: 4px 6px;
}

/* Position sorting icon properly */
#patient-appeals-table thead th.sorting:after,
#patient-appeals-table thead th.sorting_asc:after,
#patient-appeals-table thead th.sorting_desc:after {
    right: 8px;
    left: auto;
    position: absolute;
}

/* Remove sorting icon for Action column */
#patient-appeals-table thead th.no-sort.sorting,
#patient-appeals-table thead th.no-sort.sorting_asc,
#patient-appeals-table thead th.no-sort.sorting_desc {
    background-image: none !important;
    cursor: default !important;
}
