:root {
    --topbar-height: 56px;
    --navbar-height: 80px;
    --sidebar-width-full: 250px;
    --sidebar-width-collapsed: 100px;
    --primary: #E82F2F;
    --dark: #000000;
    --background: #fef5f5;
    --logo-color: #818385;
    --text-primary: #262626;
    --text-secondary: #888888;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #D0D5DD;
    border-radius: 4px;
    cursor: text;
}

/* select 2 css for custome selct boxes */
.select2-container--default .select2-selection--single {
    background-color: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 0.5rem;
    height: 33px;
    display: flex;
    align-items: center;
    padding: 0.2rem 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #000000;
    transition: all 0.2s ease;
    position: relative;
    cursor: pointer;
}

.select2-container--default .select2-selection--single:hover {
    border-color: rgb(237.0779220779, 92.9220779221, 92.9220779221);
}

/* Text inside select box */
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--secondary);
    padding-left: 0;
    margin: 0;
}

/* Arrow wrapper */
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 100%;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    width: 1rem;
    pointer-events: none;

}

/* Arrow triangle */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 5px 4px 0 4px;
    border-style: solid;
    border-color: #495057 transparent transparent transparent;
    margin-left: -4px;
    display: block;
    margin-top: -2px;
}

.select2-container .select2-results__option {
    background-color: #fff;
    color: #000;
    padding: 8px 12px;
    font-size: 15px;
    transition: background-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.select2-container .select2-results__option:hover {
    background-color: var(--primary-light);
    color: #000;
}

.select2-container .select2-results__option--highlighted {
    background-color: #ffeeba !important;
    color: #000 !important;
}

.select2-container .select2-results__option[aria-selected="true"] {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.select2-container--default .select2-selection--single:focus,
.select2-container--default.select2-container--focus .select2-selection--single {
    border-color: var(--primary);
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(139, 0, 0, 0.25);
}

.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #e9ecef;
    color: #6c757d;
    cursor: not-allowed;
}

/* Remove weird background highlight from selected options */
.select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #fff !important;
    /* keep plain white background */
    color: #000 !important;
}

/* On hover, light gray highlight */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #f2f2f2 !important;
    color: #000 !important;
}

/* Clean checkbox look using your red theme */
.select2-results__option input[type="checkbox"] {
    accent-color: #e3342f;
    margin-right: 8px;
    vertical-align: middle;
}

/* Reduce unwanted padding/border */
.select2-results__option {
    background-image: none !important;
    border: none !important;
    padding-left: 10px !important;
}

.select2-selection__choice {
    background-color: #f8d7da !important;
    border-color: #f5c2c7 !important;
    color: #000 !important;
}

/* sidebar css start */
/* Content area adjustments */
#page-content {
    padding-top: var(--navbar-height);
    transition: margin-left 0.3s ease;
    min-height: 100vh;
    background-color: var(--background);
    color: var(--text-primary);
}

.content-full {
    margin-left: var(--sidebar-width-full) !important;
}

.content-collapsed {
    margin-left: var(--sidebar-width-collapsed) !important;
}

.content-no-sidebar {
    margin-left: 0 !important;
}

table {
    font-size: 14px;
}

#sidebar {
    position: fixed;
    top: var(--topbar-height);
    bottom: 0;
    width: var(--sidebar-width-full);
    background: var(--background);
    transition: width 0.3s ease, transform 0.3s ease;
    z-index: 1020;
    overflow: hidden;
}

#sidebar.collapsed {
    width: var(--sidebar-width-collapsed);
}

#sidebar .nav-link {
    color: var(--dark);
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-left: 1rem;
    margin-right: 1rem;
}

#sidebar .nav-link:hover {
    color: var(--primary);
    background: var(--background);
}

#sidebar .nav-link.active {
    background-color: var(--primary);
    color: white;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    margin-right: 1rem;
}

#sidebar .nav-link i {
    font-size: 0.8rem;
    width: 2rem;
    text-align: center;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#sidebar .nav-link .menu-text {
    font-size: 0.8rem;
    margin-left: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#sidebar.collapsed .nav-link .menu-text {
    display: none;
}

/* Search bar styling */
#sidebarSearch {
    margin-inline: 1rem;
    margin-top: 3rem;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.5rem;
    width: calc(100% - 2rem);
}

#sidebar.collapsed #sidebarSearch {
    display: none;
}

.navbar {
    height: var(--navbar-height);
    z-index: 1030;
    background-color: #fff;
}

#topbarToggle {
    display: none;
}

/* Sidebar header styling */
#sidebarHeader {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: sticky;
    top: 0;
    z-index: 1;
}

#sidebarLogo img {
    height: 30px;
    width: auto;
}

/* Sidebar toggle button */
#sidebarToggle {
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1050;
    width: 50px;
    height: 40px;
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* Default (expanded) → show left arrow */
#sidebarToggle .toggle-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    background: url('/assets/images/arrow-left.png') no-repeat center center;
    background-size: contain;
    transition: background-image 0.3s ease;
}

#sidebar.collapsed #sidebarToggle .toggle-icon {
    background: url('/assets/images/arrow-right.png') no-repeat center center;
    background-size: contain;
}

#sidebar.collapsed #sidebarToggle {
    transform: translateX(calc(-100% + 35px));
}

/* Mobile close button */
#sidebarClose {
    display: none;
}

/* Tooltip styling */
.custom-tooltip .tooltip-inner {
    background-color: #495057;
    color: #fff;
    border-radius: 4px;
    padding: 5px 10px;
    font-size: 0.875rem;
    opacity: 1;
    transition: opacity 0.2s ease-in-out;
}

.custom-tooltip .tooltip-arrow {
    display: none;
}

.alert-custom {
    background-color: #d1e7dd;
    border-radius: 20px;
    padding: 5px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #dc3545;
    font-weight: bold;
}

.alert-custom .close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
}

.alert-custom .bell-icon {
    margin-right: 10px;
}

/* sidebar an topbar end */


.icon-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* main banner */
.banner-container {
    background-image: url('/assets/images/home-banner-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
    color: #333;
    padding: 20px;
    min-height: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-content {
    border-radius: 10px;
    max-width: 500px;
}

.banner-text h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.banner-text p {
    margin-bottom: 0;
    color: #555;
}

.graph-indicators {
    font-size: 0.8rem;
}

/* job sheduling css strat */
.edit-shift-modal-header {
    background-image: url("../images/jod-schedule/card-img.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 150px;
    border-bottom: none;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

.edit-shift-modal-header .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    margin: 0;
    z-index: 2;
}


.lobby-tabs .nav-link.active {
    background-color: #f39191;
    color: rgb(255, 255, 255);
    border-radius: 0.6rem;
}

.lobby-card-iamge {
    border-radius: 0.5rem;
    object-fit: cover;
}

.lobby-tab-content>.lobby-tab-pane {
    display: none;
}

.lobby-tab-content>.active {
    display: block;
}


/* Overlapping profiles */
.overlap-profile-lobby {
    margin-left: -12px;
}

/* Crown images on profiles */
.crown-img {
    width: 12px;
    height: 12px;
    bottom: -2px;
    left: 80%;
    transform: translateX(-50%);
}

/* Admin dropdown crowns */
.crown-admin-dropdown {
    bottom: -2px;
    left: 15%;
    transform: translateX(-50%);
}

.crown-super-admin-dropdown {
    bottom: 5px;
    left: 15%;
    transform: translateX(-50%);
}

/* Admin item spacing */
.admin-item {
    margin-bottom: 4px;
}

/* Admin name */
.admin-name {
    margin-left: 8px;
}

.admin-dropdown {
    display: none;
    top: -100px;
    left: 0;
    min-width: 220px;
    z-index: 10;
}
.admin-stack:hover .admin-dropdown {
    display: block;
}

/* Ensure cursor is pointer for profiles */
.profile-item {
    cursor: pointer;
}

.sch-wizard-step {
    display: none;
}

.sch-wizard-step.active {
    display: block;
}

.sch-step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sch-step-indicator.active {
    background-color: #dc3545;
}

.sch-step-line {
    flex: 1;
    height: 2px;
    background-color: #e0e0e0;
}

.sch-step-line.active {
    background-color: #dc3545;
}

.sch-illustration {
    max-width: 300px;
    margin: 0 auto;
}

/* Fullscreen Offcanvas */
.sch-offcanvas-fullscreen {
    height: 90vh !important;
    width: 100% !important;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden !important;
}

.sch-body {
    overflow: hidden !important;
    padding: 0;
}

.sch-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
}

.sch-step-content {
    overflow-y: auto !important;
    max-height: calc(90vh - 140px);
    padding: 1.5rem;
}

/* Colored cell style */
.sch-text-cell {
    padding: 8px;
    border-radius: 0.5rem;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    overflow: hidden;
}

/*  Custom Scrollbar (Bootstrap look) */
.sch-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.sch-scroll::-webkit-scrollbar {
    height: 2px;
}

.sch-scroll::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 4px;
}

.sch-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.sch-scroll::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 4px;
}

/* job sheduling css end */

/* form */
.details-form-container {
    width: 100%;
    max-width: 600px;
    padding: 2.5rem;
    backdrop-filter: blur(6px);

}


.custom-scroll {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: thin;
    scrollbar-color: #c1c1c1 #f1f1f1;
}

.custom-scroll::-webkit-scrollbar {
    height: 2px;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #c1c1c1;
    border-radius: 4px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
    background-color: #999;
}

.custom-scroll::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 4px;
}


.schedule-table td,
.schedule-table th {
    position: relative;
    transition: all 0.3s ease;
    min-width: 150px;
    text-align: center;
    vertical-align: middle;
    height: 100px;
}

.schedule-table td:first-child,
.schedule-table th:first-child {
    min-width: 220px;
    width: 220px;
    text-align: left;

}

.schedule-table td:not(:first-child),
.schedule-table th:not(:first-child) {
    min-width: 150px;
    width: 150px;
}

.schedule-table thead {
    vertical-align: middle;
}

.cell-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.schedule-table td:hover .cell-icons {
    opacity: 1;
}

.cell-icons .fa-solid {
    border: 2px solid #8F8F8F;
    font-size: 0.8rem;
    padding: 0.4rem;
    margin-right: 0.5rem;
    border-radius: 50%;
}


.schedule-table td:not(:has(.badge)):hover .cell-icons {
    opacity: 1;
}

.schedule-table td:has(.badge) .cell-icons {
    display: none;
}

.icon-dropdown {
    z-index: 1000;
    position: absolute !important;
}

.schedule-table .badge {
    display: block;
    padding: 1rem;
    margin-bottom: 2px;
    font-size: 0.75rem;
}

.head-time span {
    font-size: 12px;
    margin-bottom: 0px;
}

.head-time img {
    text-align: center;
    width: 20px;
    height: 20px;
}


.nav-tabs-custom .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem;
    border-bottom: 3px solid transparent;

}

.nav-tabs-custom .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background-color: transparent;
    font-weight: 600;
}

.color-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle-custom {
    width: 100%;
    height: 33px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    cursor: pointer;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
}

.selected-color {
    width: 16px;
    height: 16px;
    margin-right: 0.3rem;
    border-radius: 50%;
    border: 1px solid #adb5bd;
}

.dropdown-menu-custom {
    position: absolute;
    top: 110%;
    left: -40px;
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 0.6rem 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1050;
}

.dropdown-menu-custom.show {
    display: grid;
}

.color-option {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #ccc;
    transition: transform 0.2s;
}

.color-option:hover {
    transform: scale(1.15);
    border-color: #495057;
}

/* offcanvas for multiple shift  */
.offcanvas-multishift-bottom {
    width: 100% !important;
}

.offcanvas-multishift-bottom {
    height: 90vh !important;
}

.offcanvas-multishift-body {
    overflow-y: auto;
}

.shift-table th,
.shift-table td {
    vertical-align: middle;
    text-align: center;
    white-space: nowrap;
}

.shift-table .form-control,
.shift-table .form-select {
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 0.375rem 0.75rem;
}

.shift-table .add-break-link {
    text-decoration: none;
}

.form-control-color {
    width: 40px;
    height: 40px;
    padding: 0.1rem;
    margin: auto;
}

#dateSelect {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}

.no-dropdown-icon {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: none !important;
}
.caret-off::after {
    display: none !important;
}

.color-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
}

.main-layout-req {
    display: flex;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.offcanvas-sidebar-req {
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    overflow-x: hidden;
    background: #fff;
    padding-bottom: 70px;
    scrollbar-width: thin;
    border-right: 1px solid #ddd;
}


.offcanvas-sidebar-req::-webkit-scrollbar {
    width: 6px;
}

.offcanvas-sidebar-req::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* Main Content */
.offcanvas-main-content-req {
    flex-grow: 1;
    padding: 30px;
    max-height: fit-content;
}

/* Active Shift Card */
.shift-card-active {
    background-color: #e8f8f1 !important;
}


.offcanvas-body-split-req {
    flex-grow: 1;
    display: flex;
    overflow-y: hidden;
    padding: 0;
}

  


/* ========== Extra Styling ==========*/
.icon-btn {
    transition: transform 0.2s ease;
    cursor: pointer;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.green-banner {
    background-color: #38a169;
}

/* Profile Image */
.profile-img-req {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

/* Custom styles */
.profile-img-req {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}


.dropdown-menu.request-table {
    width: 100%;
    min-width: 300px;
}


.claim-container {
    overflow-x: auto;
    min-height: 500px;
}

.week-range {
    background-color: transparent !important;

}


/* top bar */
.avatar-circle {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}

.star-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    border-radius: 50%;
    background: #fff;
    height: 13px;
}

.notidrop {
    min-width: 450px;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 10px;
}

/* setting */
.banner-wrapper {
    position: relative;
    height: 180px;
    background-color: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-banner-content {
    position: absolute;
    top: 60px;
    left: 20px;
    z-index: 2;
}

.banner-edit {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    padding: 6px;
    cursor: pointer;
    z-index: 3;
}

.profile-picture-wrapper {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.profile-picture {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
}

.edit-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: black;
    color: white;
    border-radius: 50%;
    padding: 4px;
    cursor: pointer;
    font-size: 14px;
}

#profile-input,
#banner-input {
    display: none;
}

/* users css start */
input[type="date"] {
    font-size: 14px;
    color: #adb5bd;
    position: relative;
}

input[type="date"]:valid {
    color: #212529;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0.6;
    cursor: pointer;
}

input[type="date"]:hover::-webkit-calendar-picker-indicator {
    opacity: 1;
}


/* dropdown styles start*/

.user-dropdown-unique {
    position: relative;
    width: 200px;
}

.dropdown-toggle-userlist {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 4px 12px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dropdown-toggle-userlist:hover {
    border-color: #007bff;
}

.dropdown-toggle-userlist i {
    color: #666;
    font-size: 14px;
}

.dropdown-menu-unique {
    display: none;
    position: absolute;
    top: 105%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.dropdown-menu-unique.show {
    display: block;
}

.dropdown-menu-unique input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 8px 10px;
    outline: none;
    font-size: 14px;
}

.user-list-unique {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
}

.user-list-unique li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: background 0.2s;
}

.user-list-unique li:hover {
    background: #f1f1f1;
}

.avatar-unique {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    color: #fff;
    font-size: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

.selected-user-unique {
    display: flex;
    align-items: center;
    gap: 8px;
}

.selected-user-unique-text {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* groups slecet dropdown */
.groups-select-dropdown .dropdown-toggle::after {
    display: none !important;
}
.groups-select-dropdown .dropdown-menu {
    width: 200px;
    padding: 12px;
    border-radius: 10px;
}

.groups-select-dropdown .title-row {
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 6px;
}

.groups-select-dropdown .search-wrapper {
    position: relative;
    margin-bottom: 10px;
}

.groups-select-dropdown .search-wrapper input {
    padding-left: 32px;
    height: 34px;
}

.groups-select-dropdown .search-icon {
    position: absolute;
    top: 7px;
    left: 10px;
    color: #7a7a7a;
    font-size: 14px;
}

.groups-list {
    max-height: 180px;
    overflow-y: auto;
    border-radius: 6px;
    padding: 4px 2px;
}

.groups-select-dropdown .form-check {
    font-size: 14px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.select-row {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 6px;
    padding-bottom: 4px;
}

/* dropdown styles end */


/* Mobile adjustments */
@media (max-width: 767.98px) {
    #sidebar {
        top: 0;
        width: 250px;
        height: 100%;
        transform: translateX(-100%);
        padding: 10px;
        display: flex;
        flex-direction: column;
    }

    #sidebar.show {
        transform: translateX(0);
    }

    #sidebarHeader {
        display: none;
    }

    #sidebar.show #sidebarHeader {
        display: flex;
    }

    #topbarToggle {
        display: block;
    }

    #sidebarClose {
        display: none;
    }

    #sidebar.show #sidebarClose {
        display: block;
    }

    #sidebarLogo {
        display: none;
    }

    #sidebar.show #sidebarLogo {
        display: block;
    }

    #sidebarToggle {
        display: none;
    }

    #sidebarSearch {
        margin-top: 20px;
    }

    .navbar {
        z-index: 1020;
    }

    .navbar-brand img {
        display: none !important;
    }

    .notidrop {
        position: fixed !important;
        top: 60px !important;
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
        min-width: unset !important;
        max-height: 80vh !important;
        border-radius: 12px;
        overflow-y: auto;
        z-index: 1050;
    }

    /* Prevent FOUC: Force mobile margin to 0 on initial load */
    #page-content.content-full,
    #page-content.content-collapsed {
        margin-left: 0 !important;
    }

    .offcanvas-sidebar-req {
        display: none;
    }

    /*  */
    .fa-message,
    .fa-bell {
        font-size: 0.9rem !important;
        padding: 3px !important;
    }

    .avatar-circle {
        width: 32px !important;
        height: 32px !important;
    }

    .star-badge {
        height: 13px !important;
    }

    /* Hide name & email on mobile */
    .d-md-block {
        display: none !important;
    }

    /* job shceduling add shcedule */
    .lobby-tab-content .col {
        display: flex;
        justify-content: center;
    }

    .lobby-tab-content .card {
        width: 100%;
        max-width: 100%;
    }

    .lobby-tab-content .row {
        justify-content: center !important;
    }

    /* Stack layout vertically */

    /* Make whole step area vertical */
    .sch-steppp {
        flex-direction: column !important;
        align-items: center !important;
    }

    /* Make the step section stack vertically */
    .sch-steppp {
        flex-direction: row !important;
        align-items: center !important;
        text-align: center;
    }

    /* Step progress center full width */
    .sch-steppp .sch-step-chnge {
        width: 100% !important;
        order: 1;
    }

    /* Buttons side by side in a single row */
    .sch-steppp .sch-pre,
    .sch-steppp .sch-next {
        order: 2;
        width: auto !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 15px !important;
    }

    .sch-steppp {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px !important;
    }

    .sch-steppp .col-2 {
        flex: 0 1 auto !important;
        max-width: none !important;
    }

    /* Button sizes smaller */
    #prevBtn,
    #nextBtn {
        min-width: 110px;
        padding: 6px 12px;
        font-size: 14px;
    }

    .sch-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .sch-text-cell {
        max-height: 80px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: block;
    }

    #step-3 .col-lg-5,
    #step-3 .col-lg-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }

}

@media (min-width: 768px) {
    #sidebar {
        top: var(--navbar-height);
        width: var(--sidebar-width-full);
        transform: translateX(0);
    }

    #sidebar.collapsed {
        width: var(--sidebar-width-collapsed);
    }

    #topbarToggle {
        display: none !important;
    }

    #sidebarLogo {
        display: none;
    }

    #sidebarHeader {
        display: none;
    }

    #sidebar.collapsed .nav {
        margin-top: 4rem;
    }
}

@media (max-width: 576px) {
    .claim-row-item {
        width: 50%;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .claim-row-action-col {
        width: 100%;
        justify-content: center !important;
        margin-top: 10px;
        border-top: 1px solid #eee;
    }
}