@import url(./switzer.css);

body {
    margin: 0;
    padding: 0;
}

/* Override Bootstrap Dark Theme Variables */
[data-bs-theme=dark] {
    color-scheme: dark;

    /* Background Colors */
    --bs-body-bg: #00082F;
    /* Your specific deep blue */
    --bs-body-bg-rgb: 0, 8, 47;
    /* RGB version of the blue above */
    --bs-tertiary-bg: #000C45;
    /* Slightly lighter blue for cards/inputs */

    /* Text Colors */
    --bs-body-color: #E2E8F0;
    /* Soft white/gray for readability */
    --bs-body-color-rgb: 226, 232, 240;
    --bs-emphasis-color: #FFFFFF;
    /* Pure white for headings */

    /* Borders */
    --bs-border-color: rgba(255, 255, 255, 0.15);
}

/* *{
        outline: 1px solid red;
    } */

/* 1. Update the CSS Variables to your new color */
:root {
    /* Using your requested color for both light and dark variables
       to ensure the sidebar and header reflect it regardless of theme state */
    --color-darkgray: #00082F !important;
    --color-white: #00082F !important;
}

/* 2. Target the Sidebar and Header specifically to ensure transparency */
.sidebar,
header,
.bg-white,
.bg-darkgray {
    background: #00082F !important;
    background-color: #00082F !important;

    /* Optional: If the background is too transparent, you may want to
       ensure a backdrop filter is applied if your design requires it */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* 3. Force override on the Sidebar ID specifically found in your HTML */
#sidebar {
    background: #00082F !important;
}

.dropdown-icon {
    height: 16px;
    width: 16px;
}

.bg-light body {
    color: #00082F !important;
}

.bg-black body {
    color: white !important;
}

.bg-light .blackandwhite {
    background: #ffffff;
    color: #00082F;
    border-radius: 12px;
    border: none;
}

.bg-black .blackandwhite {
    background: #121418;
    color: white;
    border-radius: 12px;
    border: none;
}

.bg-black header .n-read p {
    color: white;
}

.bg-light header .n-read p {
    color: #00082F;
}

.bg-black header .n-read div {
    color: white;
}

.bg-light header .n-read div {
    color: #00082F;
}

.bg-black header .n-read:hover {
    color: white;
}

.bg-light header .n-read:hover {
    color: white;
}

.bg-light header .n-read:hover p {
    color: white;
}

.bg-light header .n-read p a {
    color: #00082F;
}

.bg-black header .n-read p a {
    color: white;
}

.bg-black .user-button a {
    color: white;
}

.bg-light .user-button a {
    color: #00082F;
}

.bg-light .user-button:hover a {
    color: white;
}

/* [data-bs-theme="dark"] {
    --bs-body-bg: #09090B;
}

[data-bs-theme="light"] {
    --bs-body-bg: #F4F5F7;
}

[data-bs-theme="dark"] .blackcard {
    background: #111317;
}

[data-bs-theme="light"] .whitecard {
    background: #FFFFFF;
}

[data-bs-theme="dark"] a {
    color: white;
}

[data-bs-theme="light"] a {
    color: black;
} */

.bold {
    font-family: "Switzer-Bold";
}

.semibold {
    font-family: "Inter";
}

.medium {
    font-family: "Inter";
}

.regular {
    font-size: "Switzer-Regular";
}

.light {
    font-family: "Switzer-Light";
}

.extralight {
    font-family: "Switzer-Extralight";
}

.italic {
    font-family: "Switzer-Italic";
}

/* removes bootstrap margin and padding */
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li {
    padding: 0;
    margin: 0;
}

.bg-darkgray {
    background-color: var(--color-darkgray) !important;
}

.bg-black {
    background-color: #00082F !important;
    /* color: white; */
}

.bg-light {
    background-color: var(--bg-light) !important;
    color: #00082F;
}

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

.color-darkgray {
    color: var(--color-gray-light);
}

/* ***************     Responsive Dashbaord Header         ****************** */

/* adminpanel aside */

.overlay {
    background-color: rgb(0 0 0 / 70%);
    z-index: 99;
}

/* asidebar with responsive code and navbar code */
.sidebar {
    width: 266px;
    position: fixed;
    top: 68px;
    transform: translateX(-100%);

    /* Hidden by default */
    height: 100vh;
    border-right: 1px;

    /* color: #fff; */
    transition: transform 0.5s ease;
    z-index: 100;

    will-change: transform, opacity;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    flex-direction: column !important;
}

.main-menu {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    font-family: Inter;
    color: #FFFFFF99;
    margin-left: 10px;

}

.sidebar.minimized .main-menu {
    margin-left: 0;
    text-align: center;
}

.sidebar.active {
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}

.sidebar.minimized {
    width: 100px;
    transition: transform 0.5s ease;
    /* Adjust based on your design */
}

.sidebar.minimized ul li a .nav-text,
.sidebar.minimized .sidebar-header strong {
    display: none;
    /* Hides text in minimized state */
}

.sidebar.minimized ul li a {
    width: 44px;
    height: 44;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.sidebar.minimized .navbar-brand {
    padding: 16px 24px;
}

.sidebar.minimized .navbar-brand img {
    width: 56px;
    height: 36px;
}

.notification-img {
    padding: 12px;
    background-color: #FFFFFF14;
    border: 1px solid #FFFFFF1F;
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-img img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    /* keeps image proportional */

}


@media screen and (max-width: 992px) {
    .sidebar {
        max-width: 266px;
        transform: translateX(-100%);
        transition: transform 0.5s ease-out;
        position: absolute;
        height: max-content;
    }

    .sidebar.active {
        transform: translateX(0);
        transition: width 0.5s ease;
    }

    .dashboard-main {
        margin-left: 0 !important;
    }
}

/* Default state (Expanded) */
.toggle-icon-lg {
    position: absolute;
    top: 6px;
    left: -26px;
    /* Position for expanded sidebar */
    z-index: 9999;
    transition: left 0.3s ease;
    /* Smooth movement */
    cursor: pointer;
}

/* Minimized state */
/* Assuming you toggle a class 'sidebar-minimized' on the body or a parent container */
.sidebar-minimized .toggle-icon-lg {
    left: -15px;
    /* Position for minimized sidebar */
}

/* Optional: Rotate the arrow when minimized */
.sidebar-minimized .mini-arrow {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.mini-arrow {
    width: 30px;
    transition: transform 0.3s ease;
}

.mini-arrow {
    width: 30px;
}

.navbar-toggler-icon {
    background-image: url(../images/burger.svg);
}

.navbar-brand {
    margin-right: 0 !important;
    position: fixed;
    padding: 16px 18px;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.navbar-brand img {
    width: 254px;
    height: 44px;
}

.nav {
    gap: 28px;
    margin: 40px 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: transparent !important;
}

.nav-link {
    display: flex;
    align-items: center;
    width: 224px;
    gap: 10px;
    padding: 12px;
    color: var(--color-gray-light);
    text-decoration: none;
    transition: background-color 0.15s ease-in-out;
    /* border: 1px solid transparent; */
}

.bg-light .nav-link:hover {
    border-radius: 8px;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: white;
}

.bg-light .nav-link.active,
.bg-light .nav-link:focus {
    border-radius: 8px;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: white;
}

.bg-black .nav-link:hover {
    border-radius: 8px;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: white;
}

.bg-black .nav-link.active,
.bg-black .nav-link:focus {
    border-radius: 8px;
    color: white;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
}

/* .user {
    display: flex;
    padding: 8px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 106, 248, 0.12);
    margin: 0 12px 0 12px;
} */

.user-card {
    display: flex;
    align-items: center;
    padding: 8px;
    gap: 20px;
    max-width: 244px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(17, 106, 248, 0.12);
    margin-left: 20px;
    margin-right: 20px;
    margin-top: auto;
    margin-bottom: 10px;
}

.user-card .user-img img {
    width: 35px;
    height: 35px;
    object-fit: cover;
}

.user-card .user-info .user-name {
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
}

.user-card .user-info .user-email {
    font-weight: 400;
    color: #ffffff99;
    font-size: 12px;
}

.user-card .dots-toggle svg {
    cursor: pointer;
    fill: #ffffff99;
}

.user-card .dropdown-menu {
    min-width: 100px;
}

.sidebar.minimized .user-card {
    justify-content: center;
    /* Center the image */
    padding: 10px 0 !important;
}

.sidebar.minimized .user-info,
.sidebar.minimized .user-card .dropdowns {
    display: none !important;
    /* Hide name, email, and dots */
}

.sidebar.minimized .user-img img {
    width: 35px;
    /* Adjust size for collapsed view */
    height: 35px;
}


/* .nav-link:hover {
    border-radius: 12px;
    background: linear-gradient(0deg, #00082F 0%, #00082F 100%), #f9fafc;
} */
/* .bg-light .nav-link:hover {
    border-radius: 12px;
    background: transparent;
    border: 1px solid #00082F99;
    color: #6f767e;
}

.bg-black .nav-link:hover {
    border-radius: 12px;
    background: transparent;
    border: 1px solid #fff;
    color: white;
} */
/* This stops the sidebar from cutting off the dropup menu */
/* #sidebar,
.sidebar-sticky {
    overflow: visible !important;
} */

.user-dropdown {
    z-index: 9999 !important;
    margin-bottom: 10px !important;
}

.nav-link:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(133, 21, 148, 0.25);
}

.nav-link img {
    width: 16px;
    height: 16px;
}

.nav-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    font-family: "Inter";
    line-height: 20px;
    padding: 0;
    margin-bottom: 0;
    /* 140% */
}

.toggle-switch {
    border: 1px solid var(--color-gray-light) !important;
    border-radius: 12px;
}

.sidebar-sticky {
    display: flex;
    flex-direction: column;
    max-height: 86dvh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* asidebar code end here */

/*
main dashboard code is here

/ */
.dashboard-main {
    flex: 1;
    margin-left: 267px;
    /* Space for the sidebar */
    transition: margin-left 0.3s ease-in-out;
}

.sidebar.minimized+.dashboard-main {
    margin-left: 100px !important;
    /* Adjusted for minimized sidebar */
}

/* dashboard header */

.header {
    display: flex;
    justify-content: space-between;
    padding: 16px;
    height: 68px;

    align-items: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.08); */
}

.welcome {
    font-style: normal;
    font-weight: 400;
    font-family: "Switzer-Regular";
    line-height: 22px;
}

.welcome p {
    font-size: 12px;
    line-height: 1.8;
}

.welcome h6 {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    font-family: "Inter";
}

.custom-switch {
    display: inline-block;
    position: relative;
    width: 68px;
    /* Adjust based on your design */
    height: 32px;
    /* Adjust based on your design */
    cursor: pointer;
}

.switch-body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(111, 22, 119, 0.12) !important;
    /* Background color */
    border-radius: 20px;
    /* Adjust for rounded corners */
    transition: background-color 0.2s;
}

.switch-button {
    position: absolute;
    top: 5px;
    /* Adjust based on your design */
    left: 5px;
    /* Adjust based on your design */
    width: 30px;
    /* Adjust based on your design */
    height: 30px;
    /* Adjust based on your design */
    background-color: transparent;
    border-radius: 50%;
    transition: transform 0.2s;
}

.switch-icon-off,
.switch-icon-on {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    /* Adjust based on your icon size */
    height: 28px;
    /* Adjust based on your icon size */
}

.switch-icon-off {
    left: 6px;
    /* Adjust based on your design */
    display: block;
    /* Show by default */
}

.switch-icon-on {
    right: 6px;
    /* Adjust based on your design */
    display: none;
    /* Hide by default */
}

.custom-switch input:checked~.switch-body {
    background-color: rgba(255, 255, 255, 0.12);
    /* Color when on */
}

.custom-switch input:checked~.switch-body .switch-button {
    transform: translateX(40px);
    /* Adjust to slide button to the right */
}

.custom-switch input:checked~.switch-body .switch-icon-on {
    display: block;
    /* Show on icon */
}

.custom-switch input:checked~.switch-body .switch-icon-off {
    display: none;
    /* Hide off icon */
}

.notifications {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 40px;
}

.notifaction-counter {
    top: -4px;
    right: -6px;
}

.notification {
    width: auto;
}

.icon-count {
    width: 24px;
    height: 24px;
    left: 24px;
    bottom: 24px;
    padding: 4px;
}

.text-count {
    color: #fff;
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 900;
    line-height: 15px;
    text-align: center;
}

.count-circle {
    width: 15px;
    height: 15px;
    border-radius: 8px;
    background: linear-gradient(180deg, #ff0571 0%, #ff5356 100%);
}

.notification-dropdown {
    background: transparent !important;
    border: none !important;
}

.n-header {
    display: flex;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid gray;
}

.n-header p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    font-family: "Switzer-Regular";
    line-height: 20px;
}

.bg-black .n-header p {
    color: white !important;
}

.bg-light .n-header p {
    color: black !important;
}

.showUnread {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    font-family: "Switzer-Regular";
}

.n-header div {
    font-size: 14px;
    font-weight: 500;
    font-family: "Inter";
    line-height: 20px;
}



.notification-scrollbar {
    max-height: 60dvh;
    overflow-y: auto;
}

.n-content p {
    /* color: #fff; */

    font-size: 12px;
    font-style: normal;
    font-weight: 400;

    font-family: "Switzer-Regular";
    line-height: 16px;
}

.n-cards {
    padding: 2px 6px;
    /* border-radius: 8px; */
    border-bottom: 1px solid #00000033;
}

.n-cards:hover {
    background: #00082F66 !important;
}

.bg-black .notificationspan {
    color: white;
}

.bg-light .notificationspan {
    color: #c104d2;
}

.bg-light .notificationpara {
    color: #00000066;
}

.bg-black .notificationpara {
    color: #ffffff66;
}

.bg-light .n-content small {
    color: #00000066;
}

.bg-black .n-content small {
    color: #ffffff66;
}

.n-card-body {
    border-radius: 8px;
    background: transparent;
    padding: 8px 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    position: relative;
    justify-content: space-between;
}

/* .n-card-body:hover {
    background: #00082F;
} */

.greendot {
    width: 16px;
    height: 16px;
    background-color: #2d964a;
    border-radius: 50%;
    position: absolute;
    top: -56px;
    right: -2px;
}

.gray-dot {
    border: 1px dotted #f1ecec;
    /* Border color for the circle */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    position: absolute;
    top: 30px;
    right: 9px;
    background-color: transparent;
    /* Set background to transparent */
}

.dropdown-toggle.dropdown-toggle-no-caret::after {
    display: none !important;
}

.n-content small {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    font-family: "Inter";
    line-height: 20px;
    /* 166.667% */
}

.n-read-container {
    border-radius: 8px;
    /* background: #1F0338; */
    display: inline-flex;
    /* padding: 8px; */
    flex-direction: column;
    align-items: flex-start;
    /* gap: 12px; */
    width: 180px;
}

.n-read {
    display: flex;
    padding: 8px;

    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    background: transparent;
    border: none;
}

.n-read:hover {
    background: #00082F;
    color: white !important;
    border-radius: 8px;
}

.n-read p {
    /* color: #d2e8ff; */

    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    font-family: "Inter";
    line-height: 20px;
    /* 142.857% */
}

.user-dropdown {
    background: transparent;
    border: none !important;
}

.user-container {
    border-radius: 8px;
    /* background: linear-gradient(180deg, #44176C 0%, #6D2C72 100%); */
    width: 230px;
}

.user-button {
    display: flex;
    justify-content: start;
    align-items: center;
}

.user-button p {
    font-size: 16px !important;
    font-weight: 500;
    font-family: "Inter";
    line-height: 20px;
    margin-top: 0 !important;
}

.user-button a {
    font-size: 16px !important;
    font-weight: 500;
    font-family: "Inter";
    line-height: 20px;
    margin-top: 0 !important;
    /* color: white !important; */
}

.user-button img {
    width: 16px;
}

.user {
    display: flex;
    align-items: center;
    gap: 20px;
}

.user-img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    /* background: #FFF; */
}

/* .user-img:hover {
    background: #00082F;
    border: 1px solid #00082F;
    border-radius: 4px;
} */

.user-img img {
    width: 18px;
    height: 24px;
}

.dropdownIcon {
    height: 16px;
    width: 16px;
}

.lateststatement {
    font-size: 16px;
    font-family: "Switzer-Regular";
    line-height: 20px;
}

.markasread {
    color: #00082F;
    font-size: 16px;
    font-family: "Switzer-Regular";
    line-height: 20px;
    background: none;
    border: none;
}

/*
@media (max-width: 600px) and (min-width: 400px) {
    .notification-container {
        padding: 16px 0px;

        border-radius: 8px;
        background: linear-gradient(180deg, #44176c 0%, #6d2c72 100%);

        width: 313px;
    }
} */

@media (max-width: 600px) {
    .dotandfull {
        display: flex;
        justify-content: end;
        align-items: end;
        gap: 10px;
    }
}

@media (min-width: 600px) {
    /* asidebar code end here */

    /*
main dashboard code is here

/ */

    /* dashboard header */

    .dotandfull {
        display: flex;
        /* justify-content: end; */
        /* align-items: end; */
        gap: 10px;
    }

    .lateststatement {
        font-size: 20px;
        font-family: "Switzer-Regular";
        line-height: 20px;
    }

    .markasread {
        color: #00082F;
        font-size: 20px;
        font-family: "Switzer-Regular";
        line-height: 20px;
        background: none;
        border: none;
    }

    .flagitems {
        font-size: 20px;
        font-family: "Switzer-Regular";
        font-weight: 400;
        line-height: 24px;
        color: #00000099;
    }

    .n-header p {
        font-size: 22px;
        font-weight: 400;
        font-family: "Switzer-Regular";
        line-height: 20px;
    }

    /* .notification-container {
        padding: 16px 0px;
        width: 550px;
    } */

    .n-content p {
        font-size: 18px;
        font-weight: 500;
        font-family: "Inter";
        line-height: 20px;
    }

    .n-cards {
        padding: 8px 16px;
    }

    .n-card-body {
        padding: 8px 12px;
    }

    .user-container {
        border-radius: 8px;
        width: 230px;
    }

    .user-button p {
        font-size: 20px;
        font-weight: 500;
        font-family: "Inter";
        line-height: 24px;
    }
}

a {
    text-decoration: none !important;
}

@media (min-width: 992px) {
    .sidebar {
        top: 0;
        width: 280px;
    }

    .navbar-brand {
        margin-right: 0 !important;

        height: 88px;
        padding: 32px 24px 20px 24px;
    }

    .sidebar-sticky {
        display: flex;
        flex-direction: column;
        max-height: 86dvh;
        overflow-y: auto;
        margin-top: 68px;
    }

    .navbar-brand img {
        width: 161px;
        height: 36px;
    }

    .nav {
        gap: 8px;
    }

    .sidebar {
        width: 280px;
    }

    .nav-link {
        width: 240px;
        padding: 12px 8px 12px 8px;
    }

    .nav-link img {
        width: 22px;
        height: 22px;
    }

    .nav-text {
        font-size: 14px;
        font-weight: 400;

        line-height: 20px;
    }

    .user {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .user-img {
        width: 40px;
        height: 40px;
    }

    .custom-switch {
        width: 60px;

        height: 32px;
    }

    .switch-icon-off,
    .switch-icon-on {
        width: 26px;

        height: 26px;
    }

    .header {
        height: 68px;
        padding: 32px 40px 16px 40px;
        align-items: flex-start;
    }

    .welcome p {
        font-size: 12px;
        line-height: 16px;
        font-weight: 500;
        font-family: "Inter";
    }

    .welcome h6 {
        font-size: 16px;
        font-weight: 600;
        line-height: 20px;
        font-family: "Inter";
    }

    .sidebar+.dashboard-main {
        margin-left: 267px;
        /* Default state for larger screens */
    }

    .sidebar.minimized+.dashboard-main {
        margin-left: 100px;
        /* Adjusted for minimized sidebar on larger screens */
    }
}

.sidebar-sticky {
    height: calc(100vh - 90px);
    /* logo height */
    overflow-y: auto;
    scroll-behavior: smooth;

    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE */
}

.sidebar-sticky::-webkit-scrollbar {
    display: none;
    /* Chrome / Safari */
}

/* Container to keep everything relative */
.search-form {
    position: relative;
    display: flex;
    align-items: center;
}

/* The Search Input */
.search-input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    /* Left padding (45px) leaves room for the icon */
    border: 1px solid #dfe1e5;
    /* Google-like light border */
    border-radius: 24px;
    /* Rounded corners like Google */
    font-size: 16px;
    outline: none;
    transition: box-shadow 0.2s;
}

/* Hover/Focus effect */
.search-input:focus {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    border-color: rgba(223, 225, 229, 0);
}

/* The Icon Positioning */
.search-icon {
    position: absolute;
    left: 5px;
    /* Space from the left edge */
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    /* Keeps icon above the input background */
    display: flex;
    align-items: center;
    pointer-events: none;
    /* User clicks "through" the icon to the input */
}

.search-img {
    width: 17px;
    height: 17px;
}

@media (min-width: 1400px) {
    .sidebar-sticky {
        display: flex;
        flex-direction: column;
        max-height: 100dvh;
        overflow-y: auto;
    }

    .sidebar.minimized .navbar-brand {
        padding: 28px 22px;
    }

    .navbar-brand {
        margin-right: 0 !important;

        height: 100px;
        padding: 28px 34px;
    }

    .navbar-brand img {
        width: 161px;
        height: 31px;
    }

    .sidebar {
        width: 257px;
    }

    .nav-link {
        width: 233px;
        padding: 12px 8px 12px 8px;
        height: 44px;
    }
}

.nav-link img {
    width: 24px;
    height: 24px;
}

.nav-text {
    font-size: 14px;
    font-weight: 400;
    font-family: "Inter";
    line-height: 20px;
}

/* asidebar code end here */

/*
main dashboard code is here

/ */

/* dashboard header */

.header {
    height: 100px;
    padding: 20px 40px;
    align-items: flex-start;
}

.welcome {
    font-weight: 500;
    font-family: "Inter";
    line-height: 28px;
}

.welcome p {
    font-size: 16px;
    line-height: 20px;
}

.welcome h6 {
    font-size: 24px;
    font-weight: 600;
    font-family: "Inter";
    line-height: 28px;
}

.n-header p {
    font-size: 24px;
    font-weight: 400;
    font-family: "Switzer-Regular";
    line-height: 20px;
}

/* .notification-container {
    padding: 16px 0px;
    width: 600px;
} */

.n-content p {
    font-size: 18px;
    font-weight: 500;
    font-family: "Inter";
    line-height: 20px;
}

.n-cards {
    padding: 8px 16px;
}

.n-card-body {
    padding: 8px 12px;
}

.user-container {
    border-radius: 8px;
    width: 230px;
}

.user-button p {
    font-size: 20px;
    font-weight: 500;
    font-family: "Inter";
    line-height: 24px;
}

.user {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* .user-img {
        width: 60px;
        height: 60px;
    } */

.custom-switch {
    width: 60px;

    height: 32px;
}

.switch-icon-off,
.switch-icon-on {
    width: 26px;

    height: 26px;
}

.sidebar+.dashboard-main {
    margin-left: 267px;
    /* Default state for larger screens */
}

.sidebar.minimized+.dashboard-main {
    margin-left: 100px;
    /* Adjusted for minimized sidebar on larger screens */
}

@media (max-width: 1399px) {
    tbody {
        font-size: 16px !important;
    }

    thead {
        font-size: 16px !important;
    }
}

/* header end here  */

/* dashboard main contet starts here  */

.content {
    padding: 20px 30px 30px;
}

/* for buttons, tabs and tables */

/* .bg-black .mainBtn {
    color: #ffffff;
    border: 1px solid transparent;
} */

.bg-black .mainBtn:active {
    color: #ffffff;
    /* border: 1px solid #ffffff; */
}

.bg-light .mainBtn {
    color: #000000;
    border: 1px solid #000;
    background: transparent;
}

.bg-light .mainBtn:hover {
    border: 1px solid #00082F;
    color: white;
    background: #00082F;
}

.bg-black .bigmainBtn {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.bg-black .bigmainBtn:active {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.bg-light .bigmainBtn {
    color: #000000;
    border: 1px solid #000;
    background: transparent;
}

.bg-light .bigmainBtn:hover {
    border: 1px solid #00082F;
    color: white;
    background: #00082F;
}

.mainBtn {
    font-family: "Inter";
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 12px 16px;
    border-radius: 12px;
    transition: 0.3s;
    height: 40px;
    line-height: 20px;
    border-radius: 8px;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    border: none;
}

.form-check-input {
    --bs-form-check-bg: none
}

.bigmainBtn {
    font-family: "Inter";
    font-weight: 500;
    font-size: 20px;
    text-align: center;
    padding: 14px 40px;
    border-radius: 12px;
    transition: 0.3s;
    height: 60px;
    line-height: 29px;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mainBtnFill {
    font-family: "Inter";
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    padding: 9px 16px;
    border-radius: 12px;
    transition: 0.3s;
    height: 45px;
    line-height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.mainBtnContent {
    font-family: "Inter";
    font-weight: 400;
    font-size: 12px;
    text-align: center;
    padding: 8px 12px;
    border-radius: 12px;
    transition: 0.3s;
    /* height: 40px; */
    line-height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}


.removeBtnFill {
    font-family: "Inter";
    font-weight: 400;
    text-align: center;
    padding: 3px 7px;
    font-size: 15px;
    line-height: 32px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #00082F;
    color: white;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
}

.removeBtnFill:hover {
    border: 1px solid #00082F;
    color: white;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
}

.bg-light .mainHeading,
.bg-light .mainLargeHeading,
.bg-light .mainSubHeading,
.bg-light .mainLargeText {
    color: black;
}

.bg-black .mainHeading,
.bg-black .mainLargeHeading,
.bg-black .mainSubHeading,
.bg-black .mainLargeText {
    color: white;
}

.mainLargeHeading {
    font-family: "Switzer-Bold";
    font-weight: 700;
    font-size: 32px;
}

.mainSubHeading {
    font-family: "Inter";
    font-weight: 600;
    font-size: 24px;
}

.mainHeading {
    font-family: "Inter";
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
}

.mainLargeText {
    font-family: "Inter";
    font-weight: 500;
    font-size: 19px;
}

.card-small-text {
    font-family: "Switzer-Regular";
    font-weight: 400;
    font-size: 20px;
}

.mainSubText {
    font-family: "Switzer-Regular";
    font-weight: 400;
    font-size: 14px;
}

.mainText {
    font-family: "Switzer-Regular";
    font-weight: 400;
    font-size: 12px;
}

.bg-light .mainTab {
    color: #00000099;
}

.bg-black .mainTab {
    color: #ffffff99;
}

.mainTab {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    background: none;
    border: none;
    padding: 8px 16px;
    line-height: 20px;
    transition: 0.1s;
}

.mainTab:hover {
    color: #00082F !important;

    background: none;
}

.mainTab:focus {
    color: #00082F !important;
    border-bottom: 2px solid #00082F !important;
    background: none;
}

.mainTab.active {
    color: #00082F !important;
    border-bottom: 2px solid #00082F !important;
    background: none;
}

.bg-light .mainTab1 {
    color: #00000099;
}

.bg-black .mainTab1 {
    color: #ffffff99;
}

.mainTab1 {
    font-family: "Switzer-Regular";
    font-weight: 400;
    font-size: 18px;
    background: none;
    border: none;
    padding: 8px 16px;
    line-height: 20px;
    transition: 0.1s;
}

.mainTab1:hover {
    color: #00082F !important;

    background: none;
}

.mainTab1:focus {
    color: #00082F !important;
    border-bottom: 2px solid #00082F !important;
    background: none;
}

.mainTab1.active {
    color: #00082F !important;
    border-bottom: 2px solid #00082F !important;
    background: none;
}

.table>tbody {
    vertical-align: middle;
}

/* .table {
    --bs-table-bg: #FFFFFF0D;
} */

/* .bg-light .table> :not(caption)>*>* {
    background-color: #fff;
} */
.truncate-name {
    max-width: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.table {
    --bs-table-bg: none;
    /* your desired color */
}

.table> :not(caption)>*>* {
    padding: 18px 10px !important;
}

.table thead th {
    padding-bottom: 10px;
}

.bg-light .table thead tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.bg-black .table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-light .table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.bg-black .table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-black thead th {
    color: white;
}

.bg-light thead th {
    color: black;
}

.bg-black tbody tr td {
    color: white;
}

.bg-light tbody tr td {
    color: black;
}

table {
    border-collapse: collapse;
    border-spacing: 0 18px;
}

thead {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 16px;
    color: #F4F7FF;
    line-height: 20px;
}

tbody {
    font-family: "Poppins";
    font-weight: 400;
    font-size: 14px;
}

.mainTableData {
    font-family: "Poppins";
    font-weight: 500;
    font-size: 14px;
}

.tableHeading {
    font-size: 16px;
    font-weight: 500;

    font-family: "Poppins";
    color: #F4F7FF;
}

.bg-light .tableHeading {
    font-size: 24px;
    color: black;
}

.bg-light #tableinput {
    border: 1px solid rgba(0, 0, 0, 0.4);
    background: #fff;
    color: #b8b8b8;
}

.bg-black #tableinput {
    color: var(--GREY-100, #b8b8b8);
    background: #09090b;
    border: 1px solid rgba(0, 0, 0, 0.4);
}

.search-containertable {
    position: relative;
}

#tableinput {
    display: inline-flex;
    height: 40px;
    padding: 8px 11.758px 8px 12px;
    justify-content: center;
    align-items: center;
    gap: 196px;
    flex-shrink: 0;
    border-radius: 8px;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    width: 296px;
}

#tableinput::placeholder {
    color: #b8b8b8;
}

#tableinput:focus {
    outline: none;
}

.button-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.bg-light .Dropdown-parent {
    background: white !important;
    border: 1px solid #0000001f !important;
}

.bg-black .Dropdown-parent {
    background: #00082F !important;
    border: 1px solid #ffffff1f !important;
}

.bg-black .Dropdown {
    color: white;
}

.bg-light .Dropdown {
    color: #00000099;
}

.searchbarparent1 {
    background: #FFFFFF0D;
    /* margin-top: 28px; */
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    white-space: nowrap;
}

/* Hide horizontal scrollbar on small screens but keep scrolling */
@media (max-width: 576px) {
    .table-responsive {
        overflow-x: auto;
        scrollbar-width: none;
        /* Firefox */
        -ms-overflow-style: none;
        /* IE & Edge */
    }

    .table-responsive::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }
}


.bg-light .searchbarparent1 {
    background: #fff;
    margin-top: 28px;
    padding: 20px;
    border-radius: 12px;
}

.searchbarparent {
    background: #121418;
    margin-top: 28px;
    padding: 20px;
    border-radius: 12px;
}

.bg-light .searchbarparent {
    background: #fff;
    margin-top: 28px;
    padding: 20px;
    border-radius: 12px;
}

.Dropdown-parent {
    border-radius: 12px;
    gap: 8px;
    background: white;
}

.Dropdown {
    font-family: "Inters";
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    padding: 10px;
}

.Dropdown:hover {
    border-radius: 8px;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: #ffffff;
}

.bg-black .dropdown-menu {
    color: white !important;
}

.bg-light .dropdown-menu {
    color: #090909 !important;
}

.bg-black .dropdown-item {
    color: white !important;
}

.bg-light .dropdown-item {
    color: #090909 !important;
}

.bg-light .dropdown-item:hover {
    color: white !important;
}

.dropdown-item:hover {
    border-radius: 8px;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: #ffffff;
}

.small-icon {
    height: 24px;
    width: 24px;
}

/* button codes start */

.bg-light .btn {
    color: #00082F;
    border: 1px solid #00082F;
}

.bg-light .link-color-changes {
    color: #ffffff;
}

.bg-black .colblackWhite {
    background: #121418 !important;
}

.bg-black .btn {
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn:hover,
.btn:focus,
.btn:active {
    border: 1px solid #00082F;
    color: #ffffff;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
}

.largebtn {
    font-family: "Inter";
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    padding: 8px;
    border: 1px solid #00082F;
    border-radius: 4px;
    color: #00082F;
    background: transparent;
    line-height: 20px;
}

.meduimbtnFill {
    font-family: "Inter";
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    padding: 8px 16px;
    border: 1px solid #00082F;
    color: white;
    height: 40px;
    line-height: 20px;
    border-radius: 6.055px;
    background: #00082F;
    gap: 6px;
}

.mediumBtn {
    height: 48px;
    border-radius: 12px;
    border: 1px solid #00082F;
    gap: 6px;
    color: #00082F;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    background: transparent !important;
    font-family: Inter, serif;
    text-align: center;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mediumBtnFill {
    height: 40px;
    border-radius: 12px;
    border: 1px solid #00082F;
    background: #00082F;
    gap: 6px;
    color: white !important;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;
    font-family: Inter, serif;
    text-align: center;
    padding: 8px 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.smallbtn {
    font-family: "Inter";
    height: 32px;
    border-radius: 6px;
    border: 1px solid #00082F;
    padding: 6px 12px !important;
    gap: 8px;
    line-height: 16px;
    font-size: 14px;
    font-weight: 500;
}

.mediumBtn1 {
    font-family: "Inter";
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    /* padding: 16px; */
    border-radius: 4px;
    transition: 0.3s;
    height: 44px;
    /* line-height: 10px; */
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hide the "Showing X to Y of Z results" text */
nav div.flex.items-center.justify-between div:first-child p.text-sm.text-gray-700 {
    display: none !important;
}

/* Or more simply, if using Bootstrap default classes */
.pagination-wrapper .small,
.pagination-wrapper .text-muted,
nav .flex.justify-between.flex-1.sm\:hidden+div {
    display: none !important;
}

/* Specific fix for Laravel Bootstrap 5 template metadata */
nav div.d-none.flex-sm-fill.d-sm-flex.align-items-sm-center.justify-content-sm-between div:first-child {
    display: none !important;
}

/* pagination */
.pagination {
    --bs-pagination-color: gray;
    --bs-pagination-bg: none;
    --bs-pagination-border-width: none;
    --bs-pagination-border-color: red;
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: white;
    --bs-pagination-hover-bg: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    --bs-pagination-hover-border-color: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    --bs-pagination-focus-color: #fff;
    --bs-pagination-focus-bg: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: white;
    --bs-pagination-active-bg: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    --bs-pagination-active-border-color: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: none;
    --bs-pagination-disabled-border-color: var(--bs-border-color);
}

.pagination {
    gap: 8px;
    align-items: center;
    justify-content: center;
}

.page-link {
    font-size: 16px;
    /* border: 1px solid #FFFFFF29; */
    border-radius: 20%;
    gap: 10px;
    background-color: #FFFFFF1A;
}

.page-item.active .page-link {
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: #ffffff;
    border: none;
}

.page-link:hover {
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: #ffffff;
    border-color: transparent;
}

.page-item:first-child .page-link {
    border-top-left-radius: 20%;
    border-bottom-left-radius: 20%;
}

.page-item:last-child .page-link {
    border-top-right-radius: 20%;
    border-bottom-right-radius: 20%;
}

/* Disabled Previous / Next state */
.page-item.disabled .page-link {
    color: #9CA3AF !important;
    background-color: #FFFFFF0D !important;
    cursor: not-allowed;
    pointer-events: none;
    opacity: 0.6;
    border: none;
}

/* Prevent hover effect on disabled */
.page-item.disabled .page-link:hover {
    background-color: #FFFFFF0D !important;
    color: #9CA3AF !important;
}

.search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    padding: 6px;
    cursor: pointer;
    pointer-events: none;
}

/* .bg-black #searchInput {
    color: white;
    background-color: #FFFFFF14;
    border: 1px solid #FFFFFF1F;
    width: 257px;
    height: 58px;
    padding: 8px;
    padding-left: 38px;
} */

.bg-light #searchInput {
    background: #f4f5f7;
    color: #b8b8b8;
}

.search-container {
    position: relative;
    display: inline-block;
}

#searchInput {
    padding: 15px;
    border-radius: 8px;
    outline: none;
    width: 300px;
    font-size: 14px;
    font-family: "Inter";
    font-weight: 400;
    color: white;
    background-color: #FFFFFF14;
    border: 1px solid #FFFFFF1F;
    width: 257px;
    height: 40px;
    padding: 8px;
    padding-left: 38px;
}

.bg-light #searchInputmain {
    background: white;
    color: #b8b8b8;
}

.bg-black #searchInputmain {
    color: #b8b8b8;
    background: #111317;
}

.search-containermain {
    position: relative;
}

#searchInputmain {
    padding: 14px;
    border-radius: 20px;
    border: none;
    outline: none;
    width: 100%;
    height: 60px;
    font-size: 20px;
    font-family: "Switzer-Regular";
    line-height: 28px;
}

#searchInput::placeholder {
    color: #b8b8b8;
}

#searchButton {
    position: absolute;
    top: 50%;
    right: -4px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    cursor: pointer;
}

.search-icon {
    cursor: pointer;
}

#searchButton:focus {
    outline: none;
}

.threeDots {
    width: 25px;
    height: 10px;
}

.threeDotsnotification {
    width: 25px;
    height: 10px;
    display: none;
}

.n-card-body:hover .threeDotsnotification {
    display: flex;
}

.notificationbtn {
    font-size: 20px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 20px;
    background: none;
    color: none;
    border: none;
    border-radius: 20px;
    padding: 7px 22px;
}

.bg-black .notificationbtn {
    color: white;
}

.bg-light .notificationbtn {
    color: black;
}

.notificationbtn:active {
    background: #00082F;
    color: white;
    border: 1px solid #00082F;
    border-radius: 20px;
    padding: 7px 22px;
}

.notificationbtn:focus {
    background: #00082F;
    color: white;
    border: 1px solid #00082F;
    border-radius: 20px;
    padding: 7px 22px;
}

.helpparent {
    margin-top: 40px;
}

.flagitems {
    font-size: 16px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 24px;
    color: #00000099;
}

.bg-black .flagitems {
    font-size: 16px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 24px;
    color: white;
}

/* table dropdown icon pointer */

.icon {
    cursor: pointer;
}

/* role classes */

.roletable-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.roletable {
    margin-top: 56px;
}

.roletable1 {
    margin-top: 56px;
}

/* tags input */

.bg-light .bootstrap-tagsinput .tag {
    margin-right: 2px;
    color: #00082F;
}

.bootstrap-tagsinput {
    border: none !important;
    background-color: #00082F !important;
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 1.4rem 0.75rem 0;
    font-size: 1rem;
    font-family: "Inter";
    font-weight: 500;
    line-height: 1.25;
    transition: border-color 0.15s ease-in-out;
    border: none;
    border-radius: 8px;
    margin-top: 10px;
    align-items: center;
    display: flex;
    flex-wrap: wrap;
}

.bg-light .bootstrap-tagsinput {
    background: #e0e1e3 !important;
}

.bootstrap-tagsinput.has-focus {
    background-color: #fff;
    border-color: #5cb3fd;
}

.bootstrap-tagsinput .label-info {
    display: inline-block;
    background-color: #ffffff1f;
    padding: 0 0.8em 0.18em;
    border-radius: 1.25rem;
    margin-bottom: 0.4em;
}

.bg-light .bootstrap-tagsinput .label-info {
    background: rgba(0, 0, 0, 0.12);
}

.bootstrap-tagsinput input {
    margin-bottom: 0.5em;
    background: transparent;
    border: none;
    outline: none;
}

.bootstrap-tagsinput input:focus {
    background: transparent;
    border: none;
    outline: none;
}

.bootstrap-tagsinput .tag [data-role="remove"]:after {
    content: "\00d7";
}

.bootstrap-tagsinput .tag [data-role="remove"] {
    margin-left: 4px;
    cursor: pointer;
}

/* input dropdown */

.inputdropdown {
    border-radius: 8px;
    margin-top: 20px;
    font-family: "Switzer-Regular";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.7px;
}

.bg-light .inputdropdown {
    border: 1px rgba(0, 0, 0, 0.4);
    background: #fff;
    color: #000;
}

.bg-black .inputdropdown {
    border: 1px rgba(255, 255, 255, 0.4);
    background: #00082F !important;
    color: #fff;
}

/* inputs in the whole panel */

.namelabel {
    font-size: 14px;
    font-family: "Inter";
    font-weight: 500;
    line-height: 18px;
}

.inputparent {
    display: flex;
    flex-direction: column;
    align-items: start;
    /* background-color: rgba(255, 255, 255, 0.08); */
}

.nameiunput {
    padding: 21px;
    width: 100%;
    height: 64px;
    font-size: 14px;
    font-family: "Inter";
    font-weight: 400;
    line-height: 18px;
    border: none;
    border-radius: 8px;
    background: #FFFFFF14;
    color: #fff !important;
}

.nameiunput:focus {
    outline: none;
    border: none;
}

.nameiunput1:focus {
    outline: none;
    border: none;
}

.bg-light .nameiunput {
    padding: 21px;
    width: 100%;
    height: 64px;
    font-size: 16px;
    font-family: "Inter";
    font-weight: 500;
    line-height: 20px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.08);
    color: #000 !important;
}

.nameiunput1 {
    padding: 21px;
    width: 100%;
    height: 60px;
    font-size: 16px;
    font-family: "Inter";
    font-weight: 500;
    line-height: 20px;
    border: none;
    border-radius: 8px;
    background: #ffffff14;
    color: GREY 100 !important;
}

.bg-light .nameiunput1 {
    padding: 21px;
    width: 100%;
    height: 64px;
    font-size: 16px;
    font-family: "Inter";
    font-weight: 500;
    line-height: 20px;
    border: none;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.08);
    color: #000 !important;
}

input[type="checkbox"] {
    accent-color: #ffffff;
    width: 20px;
    height: 20px;
}

/* active and inactive btn */

.activebtn,
.inactivebtn,
.expirebtn {
    border: 1px solid transparent;
    padding: 4px 16px;
    border-radius: 6.06px;
    height: 36px;
    width: 72px;
    font-size: 14px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expirebtn {
    background: #ff5356;
    color: #fff;
}

.activebtn {
    background: #3fb8a9;
    color: #fff;
}

.inactivebtn {
    background: #ff7f27;
    color: #fff;
}

/* here is the add role input */

.addroleinput {
    margin-top: 40px;
}

/* extras in working but i dont know where */

.allowsubscripcription {
    font-size: 16px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 20px;
}

/* for the custom purple checkbox */

.form-switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.form-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.form-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: 0.4s;
    border-radius: 34px;
}

.form-switch .slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: black;
    transition: 0.4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #c104d2;
}

input:checked+.slider:before {
    transform: translateX(16px);
}

.starspan {
    color: red;
}

/* password hide and show css */

.input-group-text {
    background-color: transparent;
    border: none;
    padding-left: 0;
    padding-right: 0;
    cursor: pointer;
    position: absolute;
    right: 14px;
    top: 20%;
}

.bg-light .input-group .bi-eye,
.input-group .bi-eye-slash {
    color: #000;
    font-size: 1.2rem;
}

.input-group .bi-eye,
.input-group .bi-eye-slash {
    color: #fff;
    font-size: 1.2rem;
}

.tabledropdownbtn {
    display: inline-flex;
    height: 40px;
    padding: 14px 20px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-family: "Inter";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    background: none;
}

.bg-light .tabledropdownbtn {
    border: 1px solid #000;
    color: #000;
}

@media (max-width: 2040px) {
    .helpWidth {
        max-width: 294px !important;
    }
}

@media (max-width: 1366px) {
    .mainBtn {
        font-size: 14px;
        padding: 12px 16px;
        height: 40px;
        line-height: 20px;
    }

    .mainBtnFill {
        font-size: 14px;
        padding: 12px 16px;
        height: 44px;
        line-height: 20px;
        min-width: 114px;
    }
}

@media (max-width: 1270px) {
    .helpWidth {
        max-width: 190px !important;
        margin-bottom: 10px;
    }

    .mainHeading {
        font-family: "Inter";
        font-weight: 600;
        font-size: 20px;
        line-height: 25px;
    }
}

@media (max-width: 880px) and (min-width: 768px) {
    .helpWidth {
        max-width: 120px !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .bigmainBtn {
        font-size: 16px;
        padding: 14px 20px;
        height: 51px;
        line-height: 20px;
    }

    .mainBtn {
        font-size: 16px;
        padding: 14px 20px;
        height: 51px;
        line-height: 20px;
    }

    .mainBtnFill {
        font-size: 14px;
        padding: 14px 20px;
        height: 51px;
        line-height: 20px;
    }
}

@media (max-width: 576px) {
    #tableinput {
        width: 100%;
    }
}

@media (max-width: 500px) {
    .mediumBtn {
        font-size: 14px;
    }

    .mediumBtn1 {
        font-family: "Inter";
        font-weight: 600;
        font-size: 14px;
        text-align: center;
        padding: 4px;
        border-radius: 4px;
        transition: 0.3s;
        height: 44px;
        /* line-height: 10px; */
        background: transparent;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .table> :not(caption)>*>* {
        padding: 18px 30px !important;
    }

    .searchbarparent1 {
        width: 400px;
    }

    .headercheck {
        position: absolute;
        right: 10px;
    }
}

@media (max-width: 450px) {
    .searchbarparent1 {
        width: 370px;
    }
}

@media (max-width: 400px) {
    .searchbarparent1 {
        width: 378px;
        white-space: nowrap;
    }
}

@media (max-width: 350px) {
    .searchbarparent1 {
        width: 232px;
    }
}

@media (min-width: 1500px) {
    .tableinput {
        width: 294px;
        height: 40px;
        border-radius: 18px;
        font-size: 18px;
    }
}

@media (min-width: 1800px) {
    .tableinput {
        width: 383px;
        height: 49px;
        border-radius: 25px;
        font-size: 18px;
    }
}

@media (min-width: 1600px) {
    .bold {
        font-weight: 500;
        font-size: 22px;
    }

    .font-size-small {
        font-size: 14px;
    }

    .tableHeading {
        font-family: "Inter";
        font-weight: 600;
        font-size: 24px;
    }

    .semibold {
        font-size: 20px;
    }

    .mainTab {
        font-size: 16px;
    }

    .mainHeading {
        font-size: 24px;
    }

    .font-size-normal-bold {
        font-size: 14px !important;
    }

    /* .mainBtn, */
    /* .mediumBtnFill, */
    .mediumBtn {
        font-size: 20px;
        height: 48px;
        /* width: 170px; */
    }

    .traderRegister {
        font-size: 20px;
    }

    thead {
        font-size: 20px;
    }

    .table thead th {
        padding-bottom: 2%;
    }
}

/* The main scrollbar area */
::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-track {
    background-color: #f5f5f5;
    -webkit-box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
    background-color: #00082F;
    border-radius: 4px;
    border: 1px solid #f5f5f5;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #00154d;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #00082F #f5f5f5;
}

.modal-header {
    border-bottom: none;
}

.modal-footer {
    border-top: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.couponpara {
    color: #00082F;
    text-align: center;
    font-family: "Inter";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 28px;
    /* 116.667% */
}

.bg-black .couponpara {
    color: #fff;
}

.bg-black .modal-content {
    background: #121418;
}

.bg-light .modal-content {
    background: #fff;
}

.modal-title {
    font-size: 28px !important;
    font-family: "Inter";
    font-weight: 600;
    line-height: 40px;
}

.form-label {
    font-size: 20px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 24px;
}

.modal-label {
    font-size: 20px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 24px;
}

.form-select {
    font-size: 16px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 24px;
    opacity: 80%;
}

.modal-input {
    font-size: 20px;
    font-family: "Switzer-Regular";
    font-weight: 400;
    line-height: 24px;
    opacity: 40%;
}

.btn-close:focus {
    outline: none;
    box-shadow: none;
}

.form-select {
    box-shadow: none;
    border: 1px solid #00000066;
}

.form-select:focus {
    box-shadow: none;
    border: 1px solid #00000066;
}

#btnclose {
    box-shadow: none;
}

/*   for scrollable navbars */

.scrollable-tab .nav-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    -ms-overflow-style: none;
    /* for Internet Explorer, Edge */
    scrollbar-width: none;
    /* for Firefox */
}

.scrollable-tab .nav-tabs::-webkit-scrollbar {
    display: none;
    /* for Chrome, Safari, and Opera */
}

.nav-item {
    flex-shrink: 0;
    /* Prevents the nav items from shrinking smaller than their content width */
}

/* toaster for the messages */

.toast {
    visibility: hidden;
    width: 400px;
    background: #242c32;
    color: #fff;
    text-align: center;
    border-radius: 8px;
    border: none;
    padding: 10px;
    position: fixed;
    top: 11%;
    z-index: 10000;
    right: -400px;
    font-size: 18px;
    opacity: 0;
    transition: opacity 0.6s, right 0.6s, visibility 0.6s;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    right: 20px;
    animation: toastIn 0.5s forwards;
    margin-right: 13px;
}

.toast.hide {
    animation: toastOut 0.5s forwards;
}

.btn-close {
    right: 10px;
    top: 20%;
    margin-left: 10px;
}

.toast-body {
    padding-right: 2rem;
    padding-left: 0px;
    text-align: start;
}

.toast-header {
    display: flex;
    align-items: center;
    padding: var(--bs-toast-padding-y) var(--bs-toast-padding-x);
    color: var(--bs-toast-header-color);
    background-color: transparent !important;
    background-clip: padding-box !important;
    border-bottom: none !important;
    border-top-left-radius: none !important;
    border-top-right-radius: none !important;
}

@keyframes toastIn {
    0% {
        right: -400px;
        opacity: 0;
    }

    100% {
        right: 20px;
        opacity: 1;
    }
}

@keyframes toastOut {
    0% {
        right: 20px;
        opacity: 1;
    }

    100% {
        right: -400px;
        opacity: 0;
    }
}

.progress-bar {
    height: 5px;
    background-color: #ffffff;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    animation: progress 2s linear forwards;
}

@keyframes progress {
    0% {
        width: 100%;
    }

    100% {
        width: 0%;
    }
}

.success-toast {
    background: #00082F;
    border: 1px solid #FFFFFF29;
}

.error-toast {
    background: #00082F;
    border: 1px solid #FFFFFF29;

}

.toast:hover .progress-bar {
    animation-play-state: paused;
}

.toast-body {
    padding: 0px 8px 8px 0;
    word-wrap: break-word;
}

@media screen and (max-width: 991.98px) {
    .sidebar {
        height: 100vh;
        height: calc(var(--vh, 1vh) * 109);

        position: fixed !important;
        /* top: 0 !important; */
        left: 0;
        z-index: 1060;
        overflow-y: auto!important;
        display: flex !important;
        flex-direction: column !important;
    }

    .sidebar-footer {
        margin-top: auto;
    }
}


@media (max-width: 800px) {
    .scrollable-tab {
        max-width: 700px;
    }
}

@media (max-width: 700px) {
    .scrollable-tab {
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .scrollable-tab {
        max-width: 500px;
    }

    .toast {
        width: 279px;
        top: 13%;
        z-index: 20;
        right: -400px;
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .scrollable-tab {
        max-width: 355px;
    }

    .tableHeading {
        font-size: 18px;
    }

    .bg-light .tableHeading {
        font-size: 18px;
    }

    .bigmainBtn {
        font-size: 17px;
        height: 50px;
        width: 238px;
        padding: 0px !important;
    }

    .mainBtn {
        font-size: 20px;
        height: 50px;
        width: 200px;
        /* padding: 0px !important; */
    }

    .mainBtnFill {
        font-size: 20px;
        height: 50px;
        width: 200px;
        padding: 12px !important;
    }
}

@media (max-width: 375px) {
    .scrollable-tab {
        max-width: 255px;
    }

    #searchInput {
        width: 253px !important;
    }
}

input:read-only {
    opacity: 0.5;
}

input[type="checkbox"] {
    opacity: 1;
}

/* ===============================
   GLASS CARD ENHANCEMENTS
================================ */
.glass-card {
    background: linear-gradient(145deg,
            rgba(255, 255, 255, 0.06),
            rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    padding: 24px;
    backdrop-filter: blur(14px);
    transition: transform .25s ease, box-shadow .25s ease;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

/* ===============================
   SECTION HEADING
================================ */
.section-heading {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
}

/* Section number */
.section-badge {
    min-width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(180deg, #00082F -15.28%, #0274FE 156.94%);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* ===============================
   DESCRIPTION
================================ */
.section-description {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* ===============================
   FEATURES
================================ */
.feature-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===============================
   GENERAL INFO CARD
================================ */
.card-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.info-grid label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.info-grid p {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin: 4px 0 0;
}

/* ===============================
   MEDIA & VIDEO
================================ */
video,
iframe {
    border-radius: 14px;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 576px) {
    .glass-card {
        padding: 18px;
    }

    .section-heading {
        font-size: 18px;
    }
}

/* Add this to your main CSS file or a <style> tag in the head */
#sidebar {
    /* Existing styles... */
    transition: all 0.3s ease-in-out;
    /* This handles the smooth movement */
    overflow-x: hidden;
    /* Prevents content from 'jumping' during the slide */
}

/* Ensure the minimized state also has the transition */
#sidebar.minimized {
    width: 80px;
    /* Or whatever your minimized width is */
    transition: all 0.3s ease-in-out;
}

/* If you are using a transform/translate for mobile toggle */
@media (max-width: 991.98px) {
    #sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
    }

    #sidebar.active {
        /* Or whatever class your JS toggles for mobile */
        transform: translateX(0);
    }
}
