/* Sidebar Styles */
.sidebar {
    max-width: 240px;
    width: 100%;
    display: inline-block;
    margin-right: 10px;
    position: fixed;
    height: 100%;
    transition: .4s;
}
.sidebar .logo-brand {
    padding: 40px 20px 00px 20px;
}
.sidebar .logo-brand img {
    width: 120px;
    height: auto;
}
.sidebar-footer {
    position: absolute;
    bottom: 0;
    padding: 20px;
}
.sidebar-footer .copyright {
    font-size: 14px;
    color: #a7a9bb;
}

/* Games Styles */
.games {
    margin-top: 20px;
}
.games-list {
    margin-bottom: 28px;
    display: inline-block;
    transition: .6s;
}
.games-list:hover {
    transform: translateY(-8px);
}
.games-list img {
    border-radius: 12px;
}
.games-list span {
    backdrop-filter: blur(30px);
    display: inline-block;
    width: 100%;
    padding: 8px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}
.games-list .p-2 {
    margin-top: -52px;
}
.games-category h1 {
    font-size: 22px;
    margin-bottom: 28px;
}
.games-logo {
    margin-bottom: 28px;
}
.games-logo img {
    margin-top: -76px;
    z-index: 1;
    position: relative;
    border-radius: 16px;
    width: 140px;
}
.games-thumbnail {
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    border-radius: 20px !important;
}
.games-thumbnail .card-body {
    backdrop-filter: blur(26px);
    min-height: 200px;
    border-radius: 20px;
}
.games-thumbnail .card-body h3 {
    font-weight: 700;
    margin-top: 52px;
    text-transform: uppercase;
}

:root {
    --warna_1: #0e1017; /* Deepest dark background */
    --warna_2: #818cf8; /* Main Accent (Vibrant Indigo - WCAG AA compliant) */
    --warna_3: rgba(28, 30, 45, 0.45); /* Card background with transparency */
    --warna_4: rgba(129, 140, 248, 0.15); /* Indigo glow tint */
    --warna_5: #ffe8e4; /* Light text secondary accent */
    --pg-text-primary: #ffffff;
    --pg-text-secondary: #a7a9bb;
    --pg-border-color: rgba(99, 102, 241, 0.2);
    --pg-bg-card: rgba(28, 30, 45, 0.45);
    --pg-bg-card-header: rgba(14, 16, 23, 0.4);
    --pg-bg-card-light: rgba(20, 22, 35, 0.4);
    --pg-bg-input: rgba(14, 16, 23, 0.5);
    --pg-accent: #818cf8;
    --pg-hover: #4f46e5;
    --pg-success: #10b981;
    --pg-danger: #ef4444;
    --pg-warning: #f59e0b;
    --pg-white: #ffffff;
    --pg-product-selected-bg: rgba(129, 140, 248, 0.08);
    --pg-product-selected-border: #818cf8;
    --font-display: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Global Reset & Base */
body {
    color: var(--pg-text-secondary);
    font-size: 14px;
    font-weight: 400;
    font-family: var(--font-display);
    background-color: var(--warna_1) !important;
    background-image: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 40%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

input, textarea, select {
    font-size: 14px !important;
    font-family: var(--font-display) !important;
}

article h1, aside h1, nav h1, section h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

a {
    color: var(--warna_2);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover, a:focus, a:active {
    color: #818cf8;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--warna_1);
}
::-webkit-scrollbar-thumb {
    background: rgba(99, 102, 241, 0.2);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(99, 102, 241, 0.4);
}

/* Page Headers & Titles */
.page-header-premium {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 16px;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.page-header-premium .icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--warna_2);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.page-header-premium:hover .icon-wrapper {
    transform: scale(1.05);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 25px rgba(99, 102, 241, 0.25);
}

.page-header-premium .icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.page-header-premium h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 30%, #a7a9bb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.page-header-premium p {
    color: var(--pg-text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Layout Structures */
.area {
    display: flex;
    min-height: 100vh;
    position: relative;
}

.sidebar {
    width: 250px;
    background: rgba(14, 16, 23, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-right: 1px solid rgba(99, 102, 241, 0.15);
    height: 100vh;
    position: fixed;
    top: 0;
    left: -250px;
    z-index: 1070;
    padding: 2rem 1rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sidebar.show {
    left: 0;
}

.sidebar .logo-brand {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(53, 53, 98, 0.3);
}

.content {
    margin-left: 0;
    padding: 2rem !important;
    flex-grow: 1;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-content {
    width: 100%;
    margin: 0 auto;
    max-width: 1280px;
    padding-bottom: 60px;
}

/* Navigation / Sidebar Menu */
.menu {
    margin-top: 2rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.menu li a {
    padding: 0.75rem 1.25rem;
    display: flex;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: var(--pg-text-secondary);
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.menu li a svg {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    transition: transform 0.2s ease;
}

.menu li:hover a, .menu li.active a {
    color: #ffffff;
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.2);
}

.menu li.active a {
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.menu li:hover a svg {
    transform: scale(1.05);
}

.sidebar-footer {
    margin-top: auto;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(167, 169, 187, 0.6);
    border-top: 1px solid rgba(53, 53, 98, 0.3);
    padding-top: 1.5rem;
}

.sidebar-footer .copyright {
    display: block;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Form Elements */
.form-control, .form-select {
    outline: none !important;
    box-shadow: none !important;
    background-color: var(--pg-bg-input) !important;
    border: 1px solid rgba(53, 53, 98, 0.6) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    padding: 0.75rem 1.25rem !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-control::placeholder {
    color: rgba(167, 169, 187, 0.5);
}

.form-control:focus, .form-control:active, .form-control:hover,
.form-select:focus, .form-select:hover {
    border-color: #6366f1 !important;
    box-shadow: 0 0 12px rgba(99, 102, 241, 0.2) !important;
}

.form-control[readonly] {
    background: rgba(14, 16, 23, 0.8) !important;
    opacity: 0.7;
}

/* Cards (Glassmorphism) */
.card {
    background: var(--warna_3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--pg-border-color) !important;
    border-radius: 16px !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.card:hover {
    border-color: rgba(99, 102, 241, 0.25) !important;
}

.card-header {
    background-color: var(--pg-bg-card-header) !important;
    border-bottom: 1px solid var(--pg-border-color) !important;
    padding: 1.25rem 1.5rem !important;
    font-weight: 700;
    color: #ffffff;
    font-size: 1.1rem;
}

.card-body {
    padding: 1.5rem !important;
}

/* Buttons */
.btn {
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(90deg, #4f46e5, #6366f1) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    background: linear-gradient(90deg, #4338ca, #4f46e5) !important;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5) !important;
    transform: translateY(-1px);
}

.btn-danger {
    background: linear-gradient(90deg, #dc2626, #ef4444) !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3) !important;
}

.btn-danger:hover {
    background: linear-gradient(90deg, #b91c1c, #dc2626) !important;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5) !important;
    transform: translateY(-1px);
}

/* Breadcrumbs */
.breadcrumb-seo {
    margin: 1.5rem 0;
    padding: 0.75rem 1.25rem;
    background-color: rgba(14, 16, 23, 0.4);
    border: 1px solid rgba(53, 53, 98, 0.3);
    border-radius: 10px;
}

.breadcrumb-seo .breadcrumb {
    margin-bottom: 0;
}

.breadcrumb-seo .breadcrumb-item a {
    color: #a7a9bb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-seo .breadcrumb-item a:hover {
    color: #818cf8;
}

.breadcrumb-seo .breadcrumb-item.active {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb-seo .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(167, 169, 187, 0.5);
}

/* Tables */
table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
    width: 100% !important;
}

table tr th {
    background-color: rgba(14, 16, 23, 0.6) !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid rgba(53, 53, 98, 0.5) !important;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

table tr td {
    color: #ffe8e4;
    vertical-align: middle;
    padding: 1rem 1.25rem !important;
    border-bottom: 1px solid rgba(53, 53, 98, 0.3) !important;
    background-color: transparent !important;
}

.table-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: rgba(255, 255, 255, 0.015) !important;
    color: #ffffff !important;
}

/* DataTables Redesign */
.dataTables_wrapper {
    padding: 1rem 0;
}

.dataTables_wrapper .dataTables_length,
.dataTables_wrapper .dataTables_filter,
.dataTables_wrapper .dataTables_info,
.dataTables_wrapper .dataTables_paginate {
    color: #ffe8e4 !important;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.dataTables_wrapper .dataTables_filter input {
    background-color: rgba(14, 16, 23, 0.5) !important;
    border: 1px solid rgba(53, 53, 98, 0.6) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 0.5rem 1rem !important;
    margin-left: 10px;
    outline: none;
}

.dataTables_wrapper .dataTables_filter input:focus {
    border-color: #6366f1 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(53, 53, 98, 0.4) !important;
    border-radius: 8px !important;
    color: #ffe8e4 !important;
    padding: 0.5rem 1rem !important;
    margin: 0 3px;
    transition: all 0.2s ease;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: linear-gradient(90deg, #4f46e5, #6366f1) !important;
    color: #ffffff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.2);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    background: rgba(255, 255, 255, 0.01) !important;
    border-color: rgba(53, 53, 98, 0.2) !important;
    color: rgba(167, 169, 187, 0.4) !important;
    cursor: not-allowed;
}

/* Accordion Custom Styling */
.accordion-item {
    background-color: rgba(28, 30, 45, 0.45) !important;
    border: 1px solid rgba(53, 53, 98, 0.4) !important;
    border-radius: 12px !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.accordion-button {
    background-color: transparent !important;
    color: #ffffff !important;
    font-weight: 600;
    padding: 1.25rem 1.5rem !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(99, 102, 241, 0.1) !important;
    color: #818cf8 !important;
}

.accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.accordion-body {
    background-color: transparent !important;
    color: #a7a9bb !important;
    padding: 1.5rem !important;
    border-top: 1px solid rgba(53, 53, 98, 0.3) !important;
    line-height: 1.6;
}

/* NiceSelect Styling */
.nice-select {
    background-color: rgba(14, 16, 23, 0.5) !important;
    border: 1px solid rgba(53, 53, 98, 0.6) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
    height: 48px;
    line-height: 46px;
    padding-left: 1.25rem;
}

.nice-select::after {
    border-bottom: 2px solid #a7a9bb;
    border-right: 2px solid #a7a9bb;
    right: 1.25rem;
}

.nice-select.open, .nice-select:active, .nice-select:focus {
    border-color: #6366f1 !important;
}

.nice-select .list {
    background-color: rgba(28, 30, 45, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    max-height: 250px;
    overflow-y: auto;
}

.nice-select .option {
    line-height: 40px;
    min-height: 40px;
    padding-left: 1.25rem;
    color: #a7a9bb;
    transition: all 0.2s ease;
}

.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
    background-color: rgba(99, 102, 241, 0.12) !important;
    color: #ffffff !important;
}

/* Select2 Customizing */
.select2-container .select2-selection--single {
    height: 48px;
    border-radius: 10px;
    padding: 9px 1.25rem;
    background-color: rgba(14, 16, 23, 0.5) !important;
    border: 1px solid rgba(53, 53, 98, 0.6) !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 28px;
    color: #ffffff;
    padding-left: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
    right: 1rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #a7a9bb transparent transparent transparent;
}

.select2-dropdown {
    background-color: rgba(28, 30, 45, 0.95) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-radius: 10px !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid rgba(53, 53, 98, 0.6) !important;
    background-color: rgba(14, 16, 23, 0.5) !important;
    border-radius: 8px;
    padding: 0.5rem 1rem !important;
    color: #ffffff !important;
}

.select2-results__option {
    padding: 0.75rem 1.25rem !important;
    color: #a7a9bb;
}

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--selected {
    background-color: rgba(99, 102, 241, 0.15) !important;
    color: #ffffff !important;
}

/* SweetAlert Customizing */
.swal-modal {
    background-color: rgba(28, 30, 45, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(99, 102, 241, 0.25) !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.swal-title {
    color: #ffffff !important;
    font-size: 1.4rem !important;
    font-weight: 800;
}

.swal-text {
    color: #a7a9bb !important;
    line-height: 1.6;
}

.swal-button {
    background: linear-gradient(90deg, #4f46e5, #6366f1) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3) !important;
}

.swal-button:hover {
    background: linear-gradient(90deg, #4338ca, #4f46e5) !important;
}

.swal-button--cancel {
    background: transparent !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    color: #ffe8e4 !important;
    box-shadow: none !important;
}

.swal-button--cancel:hover {
    background: rgba(99, 102, 241, 0.1) !important;
}

.swal-icon--success::before,
.swal-icon--success::after,
.swal-icon--success__hide-corners {
    background: #1c1e2d !important;
}

/* Disable nice-select inside SweetAlert / SweetAlert2 */
.swal2-container .nice-select,
.swal-container .nice-select,
.swal-modal .nice-select {
    display: none !important;
}


/* Responsive Mobile Layout Adjustments */
.nav-mobile {
    display: none;
    background-color: rgba(28, 30, 45, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
    padding: 1rem 1.5rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

@media (max-width: 991.98px) {
    .sidebar {
        left: -250px;
    }
    .sidebar.show {
        left: 0;
    }
    .content {
        margin-left: 0;
        padding: 2rem 1.25rem !important;
    }
    .nav-mobile {
        display: none !important;
    }
    #toogle-button {
        cursor: pointer;
        color: #ffffff;
    }
}

/* Floating Top Navbar Premium */
.navbar-premium {
    background: rgba(14, 16, 23, 0.75) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    padding: 0.75rem 2rem;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: all 0.3s ease;
    height: 80px;
    display: flex;
    align-items: center;
}

.max-width-1280 {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.navbar-brand-premium img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.navbar-nav-premium {
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.navbar-nav-premium .nav-item {
    position: relative;
}

.navbar-nav-premium .nav-link {
    color: var(--pg-text-secondary) !important;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    padding: 0.5rem 1rem !important;
}

.navbar-nav-premium .nav-link svg {
    width: 16px;
    height: 16px;
}

.navbar-nav-premium .nav-link:hover, 
.navbar-nav-premium .nav-link.active,
.navbar-nav-premium .show > .nav-link {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(129, 140, 248, 0.4);
}

/* Dropdown Menu Premium */
.navbar-premium .dropdown-menu {
    background: rgba(20, 22, 35, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(99, 102, 241, 0.2) !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    padding: 0.5rem !important;
    margin-top: 15px !important;
}

.navbar-premium .dropdown-item {
    color: var(--pg-text-secondary) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.25rem !important;
    border-radius: 8px !important;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.navbar-premium .dropdown-item svg {
    width: 16px;
    height: 16px;
}

.navbar-premium .dropdown-item:hover, 
.navbar-premium .dropdown-item.active {
    background-color: rgba(99, 102, 241, 0.12) !important;
    color: #ffffff !important;
}

/* Header Profile Link Styling */
.header-profile-link img {
    border-color: var(--warna_2) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-profile-link:hover img {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(129, 140, 248, 0.4);
}

/* Close button inside mobile drawer */
#close-sidebar:hover {
    transform: scale(1.1);
    color: #ef4444 !important;
}

/* Users Menu Premium */
.users-menu {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.users-menu a {
    display: flex;
    align-items: center;
    background: var(--warna_3) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--pg-border-color) !important;
    text-decoration: none;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    color: var(--pg-text-secondary) !important;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.users-menu a i {
    margin-right: 12px;
    font-size: 1.1rem;
    transition: transform 0.2s ease;
}

.users-menu a:hover {
    color: #ffffff !important;
    background: rgba(99, 102, 241, 0.1) !important;
    border-color: rgba(99, 102, 241, 0.3) !important;
    transform: translateX(4px);
}

.users-menu a:hover i {
    transform: scale(1.1);
}

.users-menu a.active {
    background: rgba(99, 102, 241, 0.15) !important;
    border-color: var(--warna_2) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.15);
}

/* ======================================================
   [REBORN 2026] Custom Vanilla Responsive Layout System
   Replaces Bootstrap's CSS Grid, Flex, Spacing & Components
   ====================================================== */

/* Containers & Fluid Bounds */
.container, .container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-right: 16px;
    padding-left: 16px;
    box-sizing: border-box;
}

.max-width-1280 {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Grid Row & Columns */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
    box-sizing: border-box;
}

.row.g-0 {
    margin-right: 0;
    margin-left: 0;
}

.row.g-0 > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.row.align-items-stretch {
    align-items: stretch !important;
}

.row.align-items-center {
    align-items: center !important;
}

/* Default Column Setup */
[class*="col-"] {
    box-sizing: border-box !important;
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 12px;
    padding-left: 12px;
}

/* Mobile Columns (Base 320px+) */
.col-12 { width: 100% !important; }
.col-11 { width: 91.666667% !important; }
.col-10 { width: 83.333333% !important; }
.col-9  { width: 75% !important; }
.col-8  { width: 66.666667% !important; }
.col-7  { width: 58.333333% !important; }
.col-6  { width: 50% !important; }
.col-5  { width: 41.666667% !important; }
.col-4  { width: 33.333333% !important; }
.col-3  { width: 25% !important; }
.col-2  { width: 16.666667% !important; }
.col-1  { width: 8.333333% !important; }

/* Medium Devices (Tablets, 768px and up) */
@media (min-width: 768px) {
    .col-md-12 { width: 100% !important; }
    .col-md-11 { width: 91.666667% !important; }
    .col-md-10 { width: 83.333333% !important; }
    .col-md-9  { width: 75% !important; }
    .col-md-8  { width: 66.666667% !important; }
    .col-md-7  { width: 58.333333% !important; }
    .col-md-6  { width: 50% !important; }
    .col-md-5  { width: 41.666667% !important; }
    .col-md-4  { width: 33.333333% !important; }
    .col-md-3  { width: 25% !important; }
    .col-md-2  { width: 16.666667% !important; }
    .col-md-1  { width: 8.333333% !important; }
}

/* Large Devices (Desktops, 992px and up) */
@media (min-width: 992px) {
    .col-lg-12 { width: 100% !important; }
    .col-lg-11 { width: 91.666667% !important; }
    .col-lg-10 { width: 83.333333% !important; }
    .col-lg-9  { width: 75% !important; }
    .col-lg-8  { width: 66.666667% !important; }
    .col-lg-7  { width: 58.333333% !important; }
    .col-lg-6  { width: 50% !important; }
    .col-lg-5  { width: 41.666667% !important; }
    .col-lg-4  { width: 33.333333% !important; }
    .col-lg-3  { width: 25% !important; }
    .col-lg-2  { width: 16.666667% !important; }
    .col-lg-1  { width: 8.333333% !important; }
}

/* Spacing Helpers (Margins & Paddings) */
.m-0  { margin: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mr-0 { margin-right: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.ml-0 { margin-left: 0 !important; }
.mx-0 { margin-left: 0 !important; margin-right: 0 !important; }
.my-0 { margin-top: 0 !important; margin-bottom: 0 !important; }

.m-1  { margin: 4px !important; }
.mt-1 { margin-top: 4px !important; }
.mb-1 { margin-bottom: 4px !important; }
.me-1 { margin-right: 4px !important; }
.ms-1 { margin-left: 4px !important; }

.m-2  { margin: 8px !important; }
.mt-2 { margin-top: 8px !important; }
.mb-2 { margin-bottom: 8px !important; }
.me-2 { margin-right: 8px !important; }
.ms-2 { margin-left: 8px !important; }

.m-3  { margin: 16px !important; }
.mt-3 { margin-top: 16px !important; }
.mb-3 { margin-bottom: 16px !important; }
.me-3 { margin-right: 16px !important; }
.ms-3 { margin-left: 16px !important; }

.m-4  { margin: 24px !important; }
.mt-4 { margin-top: 24px !important; }
.mb-4 { margin-bottom: 24px !important; }
.me-4 { margin-right: 24px !important; }
.ms-4 { margin-left: 24px !important; }

.m-5  { margin: 32px !important; }
.mt-5 { margin-top: 32px !important; }
.mb-5 { margin-bottom: 32px !important; }
.me-5 { margin-right: 32px !important; }
.ms-5 { margin-left: 32px !important; }

.ms-auto { margin-left: auto !important; }
.me-auto { margin-right: auto !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }
.my-auto { margin-top: auto !important; margin-bottom: auto !important; }

.p-0  { padding: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }
.ps-0 { padding-left: 0 !important; }
.pe-0 { padding-right: 0 !important; }
.px-0 { padding-left: 0 !important; padding-right: 0 !important; }
.py-0 { padding-top: 0 !important; padding-bottom: 0 !important; }

.p-1  { padding: 4px !important; }
.pt-1 { padding-top: 4px !important; }
.pb-1 { padding-bottom: 4px !important; }
.ps-1 { padding-left: 4px !important; }
.pe-1 { padding-right: 4px !important; }
.py-1 { padding-top: 4px !important; padding-bottom: 4px !important; }
.px-1 { padding-left: 4px !important; padding-right: 4px !important; }

.p-2  { padding: 8px !important; }
.pt-2 { padding-top: 8px !important; }
.pb-2 { padding-bottom: 8px !important; }
.ps-2 { padding-left: 8px !important; }
.pe-2 { padding-right: 8px !important; }
.py-2 { padding-top: 8px !important; padding-bottom: 8px !important; }
.px-2 { padding-left: 8px !important; padding-right: 8px !important; }

.p-3  { padding: 16px !important; }
.pt-3 { padding-top: 16px !important; }
.pb-3 { padding-bottom: 16px !important; }
.ps-3 { padding-left: 16px !important; }
.pe-3 { padding-right: 16px !important; }
.py-3 { padding-top: 16px !important; padding-bottom: 16px !important; }
.px-3 { padding-left: 16px !important; padding-right: 16px !important; }

.p-4  { padding: 24px !important; }
.pt-4 { padding-top: 24px !important; }
.pb-4 { padding-bottom: 24px !important; }
.ps-4 { padding-left: 24px !important; }
.pe-4 { padding-right: 24px !important; }
.py-4 { padding-top: 24px !important; padding-bottom: 24px !important; }
.px-4 { padding-left: 24px !important; padding-right: 24px !important; }

.p-5  { padding: 32px !important; }
.pt-5 { padding-top: 32px !important; }
.pb-5 { padding-bottom: 32px !important; }
.ps-5 { padding-left: 32px !important; }
.pe-5 { padding-right: 32px !important; }
.py-5 { padding-top: 32px !important; padding-bottom: 32px !important; }
.px-5 { padding-left: 32px !important; padding-right: 32px !important; }

/* Flexbox Layout Utilities */
.d-flex { display: flex !important; }
.flex-column { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }
.flex-grow-1 { flex-grow: 1 !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }

.justify-content-start { justify-content: flex-start !important; }
.justify-content-end { justify-content: flex-end !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }
.justify-content-around { justify-content: space-around !important; }

.align-items-start { align-items: flex-start !important; }
.align-items-end { align-items: flex-end !important; }
.align-items-center { align-items: center !important; }
.align-items-stretch { align-items: stretch !important; }

.gap-1 { gap: 4px !important; }
.gap-2 { gap: 8px !important; }
.gap-3 { gap: 16px !important; }
.gap-4 { gap: 24px !important; }
.gap-5 { gap: 32px !important; }

/* Display & Visibility Utilities */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-inline-block { display: inline-block !important; }

@media (min-width: 768px) {
    .d-md-none { display: none !important; }
    .d-md-block { display: block !important; }
    .d-md-inline-block { display: inline-block !important; }
    .d-md-flex { display: flex !important; }
}

@media (min-width: 992px) {
    .d-lg-none { display: none !important; }
    .d-lg-block { display: block !important; }
    .d-lg-inline-block { display: inline-block !important; }
    .d-lg-flex { display: flex !important; }
}

/* Typography & Text Helpers */
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
.text-success { color: var(--pg-success) !important; }
.text-danger { color: var(--pg-danger) !important; }
.text-warning { color: var(--pg-warning) !important; }
.text-white { color: #ffffff !important; }
.text-secondary { color: var(--pg-text-secondary) !important; }
.text-muted { color: rgba(167, 169, 187, 0.6) !important; }
.text-decoration-none { text-decoration: none !important; }

/* Form Control Elements */
.form-check-input {
    width: 1em;
    height: 1em;
    margin-top: .25em;
    vertical-align: top;
    background-color: var(--pg-bg-input);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border: 1px solid rgba(129, 140, 248, 0.3);
    appearance: none;
    print-color-adjust: exact;
    border-radius: .25em;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--warna_2);
    border-color: var(--warna_2);
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3E%3C/svg%3E");
}

.form-check-label {
    color: var(--pg-text-secondary);
    cursor: pointer;
    user-select: none;
}

.is-invalid {
    border-color: var(--pg-danger) !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.25) !important;
}

.is-valid {
    border-color: var(--pg-success) !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.25) !important;
}

.d-none-print {
    display: block;
}

@media print {
    .d-none-print {
        display: none !important;
    }
}

/* Dropdown Compatibility */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.dropdown-menu.show {
    display: block !important;
}

/* ======================================================
   [REBORN 2026] Premium Glassmorphic Modal Component
   ====================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1080;
    display: none;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    outline: 0;
    transition: opacity 0.2s linear;
    background-color: rgba(10, 12, 22, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-sizing: border-box;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-dialog {
    position: relative;
    width: 100%;
    margin: 1.75rem auto;
    pointer-events: none;
    max-width: 520px;
    padding: 0 16px;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .modal-dialog.modal-lg {
        max-width: 800px !important;
    }
}

@media (min-width: 1200px) {
    .modal-dialog.modal-xl {
        max-width: 1140px !important;
    }
}

.modal-dialog-centered {
    display: flex;
    align-items: center;
    min-height: calc(100% - 3.5rem);
}

.modal-content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background: linear-gradient(135deg, rgba(28, 33, 56, 0.98) 0%, rgba(13, 15, 26, 0.99) 100%) !important;
    border: 1px solid rgba(129, 140, 248, 0.12) !important;
    border-radius: 24px;
    outline: 0;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(129, 140, 248, 0.05);
    box-sizing: border-box;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 1.25rem 1.5rem 0.5rem 1.5rem;
    box-sizing: border-box;
}

.btn-close {
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #fff;
    background: transparent url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3E%3Cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3E%3C/svg%3E") center/1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: .5;
    transition: opacity .15s ease-in-out;
    cursor: pointer;
}

.btn-close:hover {
    opacity: 1;
}

.modal-body {
    position: relative;
    flex: 1 1 auto;
    padding: 1.5rem 2.25rem 2.25rem 2.25rem;
    box-sizing: border-box;
}

.modal-icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--pg-success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
}

.modal-icon-wrapper svg {
    width: 24px;
    height: 24px;
}

.modal-title {
    margin: 0 0 8px 0;
    line-height: 1.3;
    font-size: 1.45rem;
    font-weight: 800;
    color: #ffffff;
    text-align: center;
}

.modal-subtitle {
    font-size: 0.88rem;
    color: var(--pg-text-secondary);
    text-align: center;
    margin: 0 0 1.75rem 0;
}

.modal-details-box {
    background: rgba(14, 16, 23, 0.5);
    border: 1px solid rgba(129, 140, 248, 0.1);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--pg-text-secondary);
}

.detail-value {
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 700;
}

.modal-tos-container {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 1.75rem;
}

.modal-tos-container label {
    font-size: 0.82rem;
    line-height: 1.5;
}

.modal-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 2.25rem 2.25rem 2.25rem;
    box-sizing: border-box;
}

.btn-secondary-custom {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    text-align: center;
}

.btn-secondary-custom:hover {
    background: rgba(255, 255, 255, 0.12);
}

.btn-primary-custom {
    background: linear-gradient(90deg, #4f46e5, #818cf8);
    border: none;
    color: #ffffff;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.35);
    text-align: center;
}

.btn-primary-custom:hover {
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    background: linear-gradient(90deg, #4338ca, #4f46e5);
}

.btn-primary-custom:disabled {
    background: rgba(255,255,255,0.08) !important;
    color: rgba(255,255,255,0.3) !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1070;
    width: 100vw;
    height: 100vh;
    background-color: #000;
    opacity: 0.5;
}

/* Nice Select custom fixes */
.nice-select {
    background-color: var(--pg-bg-input) !important;
    border: 1px solid rgba(129, 140, 248, 0.2) !important;
    color: #ffffff !important;
    border-radius: 10px !important;
}

.nice-select .list {
    background-color: rgba(20, 22, 35, 0.98) !important;
    border: 1px solid rgba(129, 140, 248, 0.2) !important;
    backdrop-filter: blur(10px);
}

.nice-select .option:hover, 
.nice-select .option.focus, 
.nice-select .option.selected.focus {
    background-color: rgba(129, 140, 248, 0.15) !important;
    color: #ffffff !important;
}

/* ======================================================
   [REBORN 2026] Spacing and Layout Mobile Corrections
   ====================================================== */
@media (max-width: 575.98px) {
    .content {
        padding: 2rem 12px !important;
    }
    .navbar-premium {
        padding: 0.5rem 12px !important;
        height: 70px !important;
    }
    .navbar-brand-premium img {
        height: 38px !important;
    }
}

@media (min-width: 992px) {
    .sidebar {
        display: none !important;
    }
}

.ajax-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    min-width: 260px;
    background: linear-gradient(135deg, rgba(28, 30, 45, 0.95) 0%, rgba(14, 16, 23, 0.98) 100%);
    border: 1px solid rgba(129, 140, 248, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 999;
    display: none;
    max-height: 350px;
    overflow-y: auto;
    padding: 6px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 600;
}

.search-result-item:hover {
    background-color: rgba(99, 102, 241, 0.15);
    color: #a78bfa !important;
}

.search-result-item img {
    border-radius: 6px;
    object-fit: cover;
}

.search-no-results {
    padding: 12px;
    text-align: center;
    color: #a7a9bb;
    font-size: 0.82rem;
}

.text-xs {
    font-size: 0.875rem !important;
}

.faq-grid-custom {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .faq-grid-custom {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item-premium {
    border: 1px solid rgba(129, 140, 248, 0.1) !important;
    background: rgba(28, 30, 45, 0.4) !important;
    border-radius: 16px !important;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item-premium:hover {
    border-color: rgba(129, 140, 248, 0.25) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-item-premium.active {
    border-color: rgba(129, 140, 248, 0.4) !important;
    background: rgba(99, 102, 241, 0.05) !important;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.faq-trigger-premium {
    width: 100% !important;
    text-align: left !important;
    background: transparent !important;
    border: none !important;
    padding: 1.25rem 1.5rem !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 0.95rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    outline: none !important;
    transition: background-color 0.3s ease;
}

.faq-trigger-premium:hover {
    background-color: rgba(255, 255, 255, 0.02) !important;
}

.faq-item-premium.active .faq-trigger-premium {
    background-color: rgba(129, 140, 248, 0.08) !important;
}

.faq-chevron-premium {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    color: #a7a9bb;
}

.faq-item-premium.active .faq-chevron-premium {
    transform: rotate(180deg);
    color: #818cf8 !important;
}

.faq-content-premium {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item-premium.active .faq-content-premium {
    border-color: rgba(129, 140, 248, 0.1) !important;
}

.faq-body-premium {
    padding: 1.25rem 1.5rem !important;
    font-size: 0.9rem !important;
    line-height: 1.7 !important;
    color: #cbd5e1 !important;
}

.faq-body-premium p {
    color: #cbd5e1 !important;
    margin: 0 !important;
}

.sweet-overlay {
    background-color: rgba(3, 4, 9, 0.8) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.sweet-alert {
    background: linear-gradient(135deg, rgba(28, 33, 56, 0.95) 0%, rgba(13, 15, 26, 0.98) 100%) !important;
    border: 1px solid rgba(129, 140, 248, 0.2) !important;
    border-radius: 24px !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.75) !important;
    color: #ffffff !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    padding: 2rem !important;
}

.sweet-alert h2 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-top: 20px !important;
    margin-bottom: 10px !important;
}

.sweet-alert p {
    color: #a7a9bb !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    line-height: 1.6 !important;
}

.sweet-alert .sa-icon.sa-success {
    border-color: #10b981 !important;
}

.sweet-alert .sa-icon.sa-success .sa-line {
    background-color: #10b981 !important;
}

.sweet-alert .sa-icon.sa-success .sa-placeholder {
    border: 4px solid rgba(16, 185, 129, 0.2) !important;
}

.sweet-alert .sa-icon.sa-success::before,
.sweet-alert .sa-icon.sa-success::after,
.sweet-alert .sa-icon.sa-success .sa-fix {
    background: #141724 !important;
}

.sweet-alert .sa-icon.sa-error {
    border-color: #f43f5e !important;
}

.sweet-alert .sa-icon.sa-error .sa-line {
    background-color: #f43f5e !important;
}

.sweet-alert .sa-icon.sa-warning {
    border-color: #f59e0b !important;
}

.sweet-alert .sa-icon.sa-warning .sa-body,
.sweet-alert .sa-icon.sa-warning .sa-dot {
    background-color: #f59e0b !important;
}

.sweet-alert .sa-icon.sa-info {
    border-color: #6366f1 !important;
}

.sweet-alert .sa-icon.sa-info::before,
.sweet-alert .sa-icon.sa-info::after {
    background-color: #6366f1 !important;
}

.sweet-alert .sa-button-container {
    margin-top: 24px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
}

.sweet-alert button {
    border-radius: 12px !important;
    font-size: 0.875rem !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    margin: 0 !important;
    box-shadow: none !important;
    outline: none !important;
}

.sweet-alert button.confirm {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%) !important;
    color: #ffffff !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
}

.sweet-alert button.confirm:hover {
    background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px -10px rgba(99, 102, 241, 0.5) !important;
}

.sweet-alert button.confirm:active {
    transform: translateY(0) !important;
}

.sweet-alert button.cancel {
    background: rgba(255, 255, 255, 0.05) !important;
    color: #a7a9bb !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.sweet-alert button.cancel:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

.sweet-alert button.cancel:active {
    transform: translateY(0) !important;
}

