        :root {
            --theme-background: #F0F5F4;
            --theme-text: #1a1a1a;
            --theme-form-control: #FFFFFF;
            --theme-line: url('../pics/irgups_line.svg');
        }

        [data-theme="dark"] {
            --theme-background: #232E2B;
            --theme-text: #f0f0f0;
            --theme-form-control: #0D6E51;
            --theme-line: url('../pics/irgups_line_dark.svg');
        }

        .table {
            --bs-table-bg: var(--theme-form-control) !important;
            --bs-table-color: var(--theme-text) !important;
            --bs-table-border-color: var(--theme-text) !important;
            --bs-table-striped-bg: rgba(0, 0, 0, 0.02);
            --bs-table-hover-bg: rgba(0, 0, 0, 0.04);
        }

        [data-theme="dark"] .table {
            --bs-table-striped-bg: rgba(255, 255, 255, 0.03);
            --bs-table-hover-bg: rgba(255, 255, 255, 0.06);
        }

        .table {
            background-color: var(--theme-form-control) !important;
            color: var(--theme-text) !important;
        }

        .table td,
        .table th {
            border-color: var(--theme-text) !important;
            color: var(--theme-text) !important;
        }

        .table-compact {
            --bs-table-bg: var(--theme-form-control) !important;
            font-size: 0.85rem;
        }

        .table td,
        .table th {
            padding: 0.35rem 0.5rem !important;
            vertical-align: middle;
        }

        .table-compact th {
            font-weight: 600;
            font-size: 0.8rem;
        }

        .table-compact td:first-child {
            font-size: 0.8rem;
            min-width: 85px !important;
        }

        .table-compact .card {
            padding: 0.35rem 0.5rem !important;
            margin-bottom: 0.25rem;
        }

        .table-compact .card span {
            line-height: 1.4;
            display: inline-block;
        }

        .table-compact .card b,
        .table-compact .card i {
            font-size: 0.8rem;
        }

        .span-margin {
            margin: 10px;
        }

        .form-control {
            background: var(--theme-form-control) !important;
            color: var(--theme-text);
            border: 0px !important;
        }

        .offcanvas {
            background-color: var(--theme-background);
            color: var(--theme-text);
        }

        input::placeholder,
        textarea::placeholder {
            color: var(--theme-text) !important;
            opacity: 0.6;
        }

        input:focus,
        textarea:focus,
        select:focus {
            border-color: var(--theme-text) !important;
            outline: 0;
            box-shadow: 0 0 0 0.25rem rgba(var(--theme-text-rgb, 26, 26, 26), 0.25);
        }

        .form-control:focus {
            color: var(--theme-text) !important;
            border-color: var(--theme-text) !important;
            box-shadow: 0 0 0 0.25rem rgba(var(--theme-text-rgb, 26, 26, 26), 0.25) !important;
        }

        .form-select {
            color: var(--theme-text) !important;
        }

        select:focus {
            border-color: var(--theme-text) !important;
        }

        [type="text"]:focus,
        [type="email"]:focus,
        [type="password"]:focus,
        [type="number"]:focus,
        [type="tel"]:focus,
        [type="search"]:focus,
        [type="url"]:focus {
            border-color: var(--theme-text) !important;
        }

        .btn {
            background-color: var(--theme-form-control) !important;
            color: var(--theme-text) !important;
            border: 0px !important;
        }

        .text-secondary {
            color: var(--theme-text) !important;
        }

        .card {
            background-color: var(--theme-background);
        }

        [data-theme="dark"] .card {
            color: var(--theme-text) !important;
        }

        i {
            color: var(--theme-text) !important;
        }

        .date-container {
            background-color: var(--theme-background) !important;

        }

        a {
            color: var(--theme-text) !important;
        }

        ul {
            border-radius: 1em !important;
        }

        .btn-check:checked+.btn,
        .btn.active,
        .btn.show,
        .btn:first-child:active,
        :not(.btn-check)+.btn:active {
            background-color: var(--theme-background) !important;
        }

        .accordion-button,
        .accordion-collapse {
            background-color: var(--theme-form-control) !important;
            color: var(--theme-text) !important;
        }

        .btn-outline-success:hover {
            background-color: var(--theme-form-control) !important;
            opacity: 0.6;
        }

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

        .text-dark {
            color: var(--theme-text) !important;
        }

        .badge {
            background-color: var(--theme-form-control) !important;
            color: var(--theme-text) !important;
        }

        body {
            background-color: var(--theme-background);
            color: var(--theme-text);
            font-family: "Inter", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            margin: 0;
            padding: 0;
            min-height: 100%;
            position: relative;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        body::before {
            content: '';
            position: fixed;
            inset: -100%;
            z-index: -1;
            background-image: var(--theme-line);
            background-repeat: repeat;
            background-position: center;
            transform: rotate(45deg);
            transform-origin: center;
            pointer-events: none;
            opacity: 1;
            transition: opacity 0.5s ease;
        }

        body::after {
            content: '';
            position: fixed;
            inset: -100%;
            z-index: -2;
            background-image: var(--theme-line);
            background-repeat: repeat;
            background-position: center;
            transform: rotate(45deg);
            transform-origin: center;
            pointer-events: none;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        body,
        html {
            min-height: 100%;
            margin: 0;
            padding: 0;
        }

        .switch_color_theme {
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            padding: 8px 14px;
            border-radius: 30px;
            background-color: var(--bg-secondary, #e8edec);
            border: 1px solid var(--border-color, #d0d5d4);
            transition: all 0.3s ease;
            user-select: none;
            font-size: 18px;
            width: fit-content;
            position: fixed;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        @media (max-width: 450px) {
            .switch_color_theme {
                position: fixed;
                bottom: 20px;
                right: 20px;
                top: auto;
                z-index: 1000;
            }
        }


        .switch_color_theme:hover {
            transform: scale(1.05);
            box-shadow: 0 2px 12px var(--shadow-color, rgba(0, 0, 0, 0.15));
        }

        .switch_color_theme i {
            transition: all 0.3s ease;
            color: var(--text-secondary, #666) !important;
        }

        [data-theme="dark"] .switch_color_theme .bi-moon {
            color: var(--text-primary, #1a1a1a) !important;
            transform: scale(1.2);
        }

        [data-theme="dark"] .switch_color_theme .bi-sun {
            color: var(--text-secondary, #888) !important;
            transform: scale(0.9);
        }

        :root:not([data-theme="dark"]) .switch_color_theme .bi-sun {
            color: var(--text-primary, #1a1a1a) !important;
            transform: scale(1.2);
        }

        :root:not([data-theme="dark"]) .switch_color_theme .bi-moon {
            color: var(--text-secondary, #888) !important;
            transform: scale(0.9);
        }