/* Global style settings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}
:root{
    --blue:#065885;
}
a {
    text-decoration: none;
}

img {
    width: 100%;
}

/* Sidebar container styling */
.menu-btn img {
    width: 33px;
    height: 33px;
}

.logo_name img {
    width: 154px;
    height: 50px;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 78px;
    padding: 6px 14px;
    z-index: 99;
    transition: all 0.5s ease;
    border-right: 2px solid #ccc;
    background: #fff;
}

.sidebar .logo-details {
    height: 60px;
    display: flex;
    align-items: center;
    position: relative;
}

.sidebar .logo-details .icon {
    opacity: 0;
    transition: all 0.5s ease;
}

.sidebar .logo-details .logo_name {
    opacity: 0;
    transition: all 0.5s ease;
}

.sidebar .logo-details #btn {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    font-size: 23px;
    text-align: center;
    cursor: pointer;
    transition: all 0.5s ease;
}

.sidebar .nav-list {
    height: calc(100% - 140px);
}


.sidebar .scroll::-webkit-scrollbar {
    width: 8px;
    background: #262440;
    border-radius: 5px;
}

.sidebar .scroll::-webkit-scrollbar-thumb {
    background: #262440;
    border-radius: 5px;
}

.sidebar .scroll::-webkit-scrollbar-track {
    background: #171526;
    border-radius: 5px;
}

.sidebar li {
    position: relative;
    margin: 17px 8px 16px 0;
    list-style: none;
}

.sidebar li .tooltip {
    position: absolute;
    top: -20px;
    left: calc(100% + 15px);
    z-index: 3;
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    padding: 15px 23px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 400;
    opacity: 0;
    /* Hidden by default */
    pointer-events: none;
    transition: 0s;
}

.sidebar li:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    transition: all 0.4s ease;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar li a {
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 12px;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s ease;
}

.sidebar li a:hover .links_name {
    transition: all 0.5s ease;
}

.sidebar li a:hover i {
    transition: all 0.5s ease;
}

/* Link text styling */
.sidebar li a .links_name {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
    /* Hidden by default */
    pointer-events: none;
    transition: 0.4s;
}

/* Icon styling within sidebar items */
.sidebar li i {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    border-radius: 12px;
}

/* Profile details styling */
.sidebar li .profile-details {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.sidebar li img {
    height: 20px;
    width: 20px;
    object-fit: cover;
    border-radius: 6px;
    margin-right: 10px;
}

/* Sidebar input (search) styling */
.sidebar input {
    font-size: 15px;
    color: #FFF;
    font-weight: 400;
    outline: none;
    height: 50px;
    width: 50px;
    /* Default width for search input */
    border: none;
    border-radius: 12px;
    transition: all 0.5s ease;
    background: #1d1b31;
    /* Input background color */
}

/* Search button styling */
.sidebar .bx-search {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-size: 22px;
    background: #1d1b31;
    color: #FFF;
}

.sidebar .bx-search:hover {
    background: #FFF;
    /* Hover background color */
    color: #11101d;
    /* Hover text color */
}

/* Profile section styling */
.sidebar li.profile {
    position: fixed;
    height: 60px;
    width: 78px;
    /* Default width for profile section */
    left: 0;
    bottom: -8px;
    padding: 10px 14px;
    background: #1d1b31;
    transition: all 0.5s ease;
    overflow: hidden;
}

.sidebar li.profile .name {
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

.sidebar li.profile .job {
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    white-space: nowrap;
}

/* Logout button styling */
.sidebar .profile #log_out {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background: #1d1b31;
    width: 100%;
    height: 60px;
    line-height: 60px;
    /* Centers logout icon vertically */
    border-radius: 0px;
    transition: all 0.5s ease;
}

/* Expanded sidebar styles */
.sidebar.open {
    width: 250px;
}

.sidebar.open .logo-details .icon {
    opacity: 1;
}

.sidebar.open .logo-details .logo_name {
    opacity: 1;
}

.sidebar.open .logo-details #btn {
    text-align: right;
}

.sidebar.open li .tooltip {
    display: none;
}

.sidebar.open li a .links_name {
    opacity: 1;
    pointer-events: auto;
}

.sidebar.open input {
    padding: 0 20px 0 50px;
    width: 100%;
}

.sidebar.open .bx-search:hover {
    background: #1d1b31;
    color: #FFF;
}

.sidebar.open li.profile {
    width: 250px;
}

.sidebar.open .profile #log_out {
    width: 50px;
    background: none;
}

.sidebar.open~.home-section {
    left: 250px;
    width: calc(100% - 250px);
}

.home-section {
    position: relative;
    min-height: 100vh;
    top: 0;
    left: 78px;
    width: calc(100% - 78px);
    transition: all 0.5s ease;
    z-index: 2;
}

.home-sec {
    min-height: auto !important;
}

.home-section .pageheadingtext {
    color: #11101d;
    margin-top: 20px;
    margin-left: 0px;
    display: flex;
    align-items: center;
    gap: 1rem;
    display: none;
}
.home-section .pageheadingtext h1{
   margin-bottom: 0 !important;
}

.user_table {
    width: 100%;
    max-width: 1200px;
    min-height: 36rem;
    margin: 20px auto;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn {
    padding: 10px 20px;
    background-color: #065885;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.btn:hover {
    padding: 10px 20px;
    background-color: #065885;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

/* End dashboard section */

.claim-dashboard {
    margin: 0 2rem;
}

.table>:not(caption)>*>* {
    box-shadow: unset !important;
}

.dashboard-header,
.patient-lists,
.claim-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.siderbar_footer{
    margin: -15% 0;
}

.sidenav-footer{
    text-align: center;
    font-size: 15px;
}

.modal-backdrop.show {
    opacity: -0.5;
  }
/* login page start */

.loginPage {
    background: #fff;
    height: 100vh;
}

.bg-login-img {
    background-image: url(../img/bg/login-bg.webp);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 100vh;
}

.content-head h1, .content-head h3 {
    color:#fff;
    text-align: center;
}

.content-head h1 {
    margin-bottom: 8px;
    padding-top: 30%;
}

.loginFormbox {
    border-radius: 5px;
    box-shadow: 0 1px 14px -4px #065885;
    max-width: 500px;
    padding: 1.75rem;
    width: 100%;
    margin: auto;
    margin-top: 10rem;

}
.login-logo {
    display: flex;
    justify-content: center;
}
.login-logo img {
    width: 200px !important;
}
.sign-head{
    font-size: 15px;
    font-weight: 600;
}
.form-group {
    margin-bottom: 1rem;
}
.input-group {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    width: 100%;
}
.ant-email, .ant_password .ant-input-password {
    height: 50px;
}

.gradient-button {
    background: #065885 !important;
    border: none;
    border-radius: 10px;
    color: #fff !important;
    margin-top: 20px;
    padding: 11px 20px !important;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    text-align: center;
    text-transform: capitalize;
}
.modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    background-color: #fefefe;
    margin: 8% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 50rem;
    border-radius: 8px;
    min-height: 500px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: end;
}

.link-policy {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.submit-btn{
    padding: 10px 40px;
}
.submit-btn:hover{
    padding: 10px 40px;
}