
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    display: none; /* Initially hidden */
}

.spinner {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    left: 50%;
    position: absolute;
    top: 50%;
}

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

.dt-input {
    margin-right: var(--size-6);
}
.dt-length select.dt-input {
    --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-image: var(--bs-form-select-bg-img),
        var(--bs-form-select-bg-icon, none);
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-position-x: right 0.75rem;
    background-size: 16px 12px;
    width: 75px;
}
.deleteConfirmModal .modal-header {
    background-color: var(--danger-500) !important;
}

.deleteConfirmModal .modal-title {
    font-size: var(--h6) !important;
    color: var(--white);
}
body .select2-container--default .select2-selection--single {
    height: 2.75rem;
    border: 1px solid var(--input-form-light);
    color: var(--text-primary-light) !important;
    background-color: var(--white);
    padding: 0.5625rem 1.25rem;
}

body .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 0;
}
body .select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 0.5625rem;
    right: 0.5625rem;
}

body .bordered-table thead tr th {
    background-color: var(--neutral-200) !important;
}

body .select2-container--default .select2-selection--single.is-invalid {
    border-color: var(--danger-main);
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  }

/* [data-theme="light"]  .sidebar-menu li a {
    color: var(--white);
}
[data-theme="light"]  .sidebar-menu .sidebar-menu-group-title {
    color: var(--white);
    font-weight: 600;
  } */
