/* ==================================================
   DARK THEME — SOFT & MODERN (PRODUCTION SAFE)
   ================================================== */

/* ===== COLOR SYSTEM ===== */
:root {
    --bg-main: #0b1220; /* page background */
    --bg-card: #0f172a; /* card surface */
    --bg-input: #111827; /* input / select */
    --bg-hover: #1e293b;

    --text-main: #f8fafc;
    --text-muted: #9ca3af;

    --border-soft: rgba(148, 163, 184, 0.22);
    --accent: #38bdf8;
}

/* ===== PAGE ===== */
body.theme-dark {
    background:
        radial-gradient(
            1200px circle at 10% 10%,
            rgba(56, 189, 248, 0.14),
            transparent 45%
        ),
        radial-gradient(
            1200px circle at 90% 90%,
            rgba(129, 140, 248, 0.14),
            transparent 45%
        ),
        var(--bg-main);
    color: var(--text-main);
}

/* ==================================================
   CARD
   ================================================== */
.theme-dark .card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    color: var(--text-main);
}

/* ==================================================
   FORM LABEL
   ================================================== */
.theme-dark .form-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* ==================================================
   INPUT / SELECT (SOFT DARK)
   ================================================== */
.theme-dark .form-control,
.theme-dark .form-select {
    background: var(--bg-input);
    border: 1px solid var(--border-soft);
    color: var(--text-main);
}

.theme-dark .form-control::placeholder {
    color: #6b7280;
}

.theme-dark .form-control:focus,
.theme-dark .form-select:focus {
    background: var(--bg-input);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.22);
    color: var(--text-main);
}

/* ==================================================
   INPUT GROUP
   ================================================== */
.theme-dark .input-group-text {
    background: var(--bg-input);
    border-color: var(--border-soft);
    color: var(--accent);
}

/* ==================================================
   BUTTON
   ================================================== */
.theme-dark .btn-outline-info {
    color: var(--accent);
    border-color: var(--accent);
}

.theme-dark .btn-outline-info:hover {
    background: var(--accent);
    color: #020617;
}

/* ==================================================
   MODAL
   ================================================== */
.theme-dark .modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    color: var(--text-main);
}

.theme-dark .modal-header,
.theme-dark .modal-footer {
    border-color: var(--border-soft);
}

/* ==================================================
   SELECT2 — SOLID DARK (CONSISTENT WITH FORM)
   ================================================== */

/* ===== SELECT2 CONTAINER ===== */
.theme-dark .select2-container--default .select2-selection--multiple,
.theme-dark .select2-container--default .select2-selection--single {
    background-color: #111827; /* sama dengan input */
    border: 1px solid rgba(148, 163, 184, 0.22);
    border-radius: 0.5rem;
    min-height: 38px;
    color: #f8fafc;
}

/* ===== TEXT & PLACEHOLDER ===== */
.theme-dark .select2-container--default .select2-selection__rendered {
    color: #f8fafc;
}

.theme-dark .select2-container--default .select2-selection__placeholder,
.theme-dark .select2-selection--single .select2-selection__placeholder {
    color: #6b7280;
}

/* ===== MULTIPLE TAG ===== */
.theme-dark .select2-container--default .select2-selection__choice {
    background-color: #1e293b; /* SOLID */
    border: 1px solid rgba(56, 189, 248, 0.35);
    color: #f8fafc;
    border-radius: 999px;
    padding: 2px 10px;
    margin-top: 4px;
}

/* ===== REMOVE ICON ===== */
.theme-dark .select2-container--default .select2-selection__choice__remove {
    color: #38bdf8;
    margin-right: 6px;
}

.theme-dark
    .select2-container--default
    .select2-selection__choice__remove:hover {
    color: #0ea5e9;
}

/* ===== INLINE SEARCH (MULTIPLE) ===== */
.theme-dark
    .select2-container--default
    .select2-search--inline
    .select2-search__field {
    color: #f8fafc;
}

/* ==================================================
   SELECT2 — DROPDOWN
   ================================================== */
.theme-dark .select2-dropdown {
    background-color: #0f172a; /* card level */
    border: 1px solid rgba(148, 163, 184, 0.22);
}

/* ===== OPTION ===== */
.theme-dark .select2-results__option {
    color: #e5e7eb;
    padding: 10px 14px;
}

/* ===== HOVER ===== */
.theme-dark .select2-results__option--highlighted {
    background-color: rgba(56, 189, 248, 0.22);
    color: #f8fafc;
}

/* ===== SELECTED ===== */
.theme-dark .select2-results__option[aria-selected="true"] {
    background-color: rgba(56, 189, 248, 0.35);
    color: #020617;
}

/* ===== SEARCH BOX (DROPDOWN) ===== */
.theme-dark .select2-search--dropdown .select2-search__field {
    background-color: #111827;
    border: 1px solid rgba(148, 163, 184, 0.22);
    color: #f8fafc;
}

/* ===== HEIGHT FIX ===== */
.theme-dark .select2-container .select2-selection--single {
    height: 38px;
}

.theme-dark .select2-selection--single .select2-selection__rendered {
    line-height: 38px;
}

/* ==================================================
   SELECT2 — SCROLLBAR
   ================================================== */
.theme-dark .select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.theme-dark .select2-results__options::-webkit-scrollbar-track {
    background: #0b1220;
}

.theme-dark .select2-results__options::-webkit-scrollbar-thumb {
    background: rgba(56, 189, 248, 0.6);
    border-radius: 999px;
}

/* ==================================================
   FIX BROWSER AUTOFILL (CHROME / EDGE / SAFARI)
   ================================================== */
.theme-dark input:-webkit-autofill,
.theme-dark input:-webkit-autofill:hover,
.theme-dark input:-webkit-autofill:focus,
.theme-dark textarea:-webkit-autofill,
.theme-dark textarea:-webkit-autofill:hover,
.theme-dark textarea:-webkit-autofill:focus,
.theme-dark select:-webkit-autofill,
.theme-dark select:-webkit-autofill:hover,
.theme-dark select:-webkit-autofill:focus {
    -webkit-text-fill-color: #f8fafc !important;
    -webkit-box-shadow: 0 0 0 1000px #111827 inset !important;
    box-shadow: 0 0 0 1000px #111827 inset !important;
    border-color: rgba(148, 163, 184, 0.22);
    transition: background-color 9999s ease-in-out 0s;
}

/* ===== FIREFOX AUTOFILL ===== */
.theme-dark input:-moz-autofill,
.theme-dark textarea:-moz-autofill,
.theme-dark select:-moz-autofill {
    box-shadow: 0 0 0 1000px #111827 inset !important;
    -moz-text-fill-color: #f8fafc !important;
}

/* ===== NUMBER INPUT ===== */
.theme-dark input[type="number"]::-webkit-inner-spin-button,
.theme-dark input[type="number"]::-webkit-outer-spin-button {
    filter: invert(1);
}

/* ==================================================
   GLOBAL BUTTON SYSTEM — AURORA (FORM SIZE)
   ================================================== */

:root {
    --btn-accent-1: #38bdf8;
    --btn-accent-2: #818cf8;
    --btn-text-dark: #020617;
    --btn-muted: #94a3b8;
}

/* ==================================================
   BASE (BUTTON & LINK)
   ================================================== */
.btn-save,
.btn-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 38px; /* setara bootstrap */
    padding: 0 20px;

    border-radius: 999px;
    font-size: 0.875rem; /* ~14px bootstrap */
    line-height: 1;
    white-space: nowrap;

    cursor: pointer;
    text-decoration: none;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.2s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

/* ==================================================
   PRIMARY — SAVE
   ================================================== */
.btn-save {
    border: none;

    background: linear-gradient(
        90deg,
        var(--btn-accent-1),
        var(--btn-accent-2)
    );

    color: var(--btn-text-dark);
    font-weight: 700;
}

.btn-save:hover {
    box-shadow: 0 10px 28px rgba(56, 189, 248, 0.4);
    transform: translateY(-1px);
}

.btn-save:active {
    transform: translateY(0);
    box-shadow: 0 6px 16px rgba(56, 189, 248, 0.35);
}

.btn-save:focus-visible {
    outline: none;
    box-shadow:
        0 0 0 3px rgba(56, 189, 248, 0.35),
        0 10px 28px rgba(56, 189, 248, 0.4);
}

/* ==================================================
   SECONDARY — CANCEL
   ================================================== */
.btn-cancel {
    background: transparent;
    border: 1px solid rgba(148, 163, 184, 0.35);

    color: var(--btn-muted);
    font-weight: 600;
}

.btn-cancel:hover {
    background: rgba(148, 163, 184, 0.12);
    color: #e5e7eb;
    border-color: rgba(148, 163, 184, 0.55);
}

.btn-cancel:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(148, 163, 184, 0.35);
}

/* ==================================================
   FULL WIDTH (MOBILE / FORM)
   ================================================== */
.btn-block {
    width: 100%;
}

/* ==================================================
   RESPONSIVE TUNING
   ================================================== */
@media (max-width: 640px) {
    .btn-save,
    .btn-cancel {
        width: 100%;
    }
}

/* ==================================================
   NAVBAR — DARK AURORA
   ================================================== */

.navbar {
    backdrop-filter: blur(10px);
}

/* BRAND */
.navbar-brand {
    font-size: 1rem;
}

/* USER BUTTON */
.btn-user {
    background: rgba(2, 6, 23, 0.65);
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #f8fafc;

    height: 38px;
    padding: 0 14px;
    border-radius: 999px;

    font-size: 0.875rem;
    font-weight: 600;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.btn-user:hover,
.btn-user:focus {
    background: rgba(2, 6, 23, 0.85);
    border-color: rgba(56, 189, 248, 0.6);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
    color: #f8fafc;
}

/* DROPDOWN */
.dropdown-menu {
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 14px;
    color: #f8fafc;
}

.dropdown-item {
    color: #e5e7eb;
}

.dropdown-item:hover {
    background: rgba(56, 189, 248, 0.15);
    color: #f8fafc;
}

.dropdown-divider {
    border-color: rgba(148, 163, 184, 0.2);
}
/* ==================================================
   GLOBAL SCROLLBAR — AURORA (FIXED)
   ================================================== */

/* ===== ROOT SCROLLBAR (CHROME / EDGE / SAFARI) ===== */
html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
    background: #0b1220;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #38bdf8, #818cf8);
    border-radius: 999px;
    border: 2px solid #0b1220;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0ea5e9, #6366f1);
}

/* ===== FIREFOX ===== */
html,
body {
    scrollbar-width: thin;
    scrollbar-color: #38bdf8 #0b1220;
}
/* ==================================================
   FIX BOOTSTRAP BTN-CLOSE (DARK MODE)
   ================================================== */

.theme-dark .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: 0.8;
}

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

.theme-dark .btn-close:focus {
    box-shadow: none;
}
/* ==================================================
   NAVBAR BRAND — AURORA GRADIENT TITLE
   ================================================== */

.navbar-brand-title {
    font-weight: 800;
    letter-spacing: -0.02em;

    background: linear-gradient(90deg, #38bdf8, #818cf8);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    /* fallback (kalau browser lama) */
    color: #38bdf8;
}
/* ==================================================
   FORM-SELECT SCROLLBAR — AURORA DARK
   ================================================== */

/* Dropdown list (Chrome, Edge, Safari) */
.theme-dark select.form-select::-webkit-scrollbar {
    width: 8px;
}

.theme-dark select.form-select::-webkit-scrollbar-track {
    background: #020617;
}

.theme-dark select.form-select::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #38bdf8, #818cf8);
    border-radius: 999px;
    border: 2px solid #020617;
}

.theme-dark select.form-select::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #0ea5e9, #6366f1);
}

/* ==================================================
   FIREFOX SUPPORT
   ================================================== */
.theme-dark select.form-select {
    scrollbar-width: thin;
    scrollbar-color: #38bdf8 #020617;
}

/* =========================================
   AURORA BUTTON (BOOTSTRAP SIZE)
========================================= */
.btn-aurora {
    --btn-bg: linear-gradient(90deg, #38bdf8, #818cf8);
    --btn-bg-hover: linear-gradient(90deg, #0ea5e9, #6366f1);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    height: 38px; /* ≈ bootstrap btn */
    padding: 0 16px;

    border-radius: 0.5rem; /* sama dgn rounded-3 */
    border: none;

    background: var(--btn-bg);
    color: #020617;
    font-weight: 600;
    font-size: 0.875rem; /* bootstrap default */
    line-height: 1;

    text-decoration: none;
    white-space: nowrap;

    transition:
        background 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.15s ease;
}

/* hover & focus */
.btn-aurora:hover,
.btn-aurora:focus {
    background: var(--btn-bg-hover);
    color: #020617;
    box-shadow: 0 10px 30px rgba(56, 189, 248, 0.45);
    transform: translateY(-1px);
}

/* active */
.btn-aurora:active {
    transform: translateY(0);
    box-shadow: 0 6px 18px rgba(56, 189, 248, 0.35);
}

/* icon */
.btn-aurora i {
    font-size: 0.9rem;
}

/* disabled */
.btn-aurora.disabled,
.btn-aurora:disabled {
    opacity: 0.6;
    pointer-events: none;
}

/* =========================================
   RESPONSIVE
========================================= */
@media (max-width: 576px) {
    .btn-aurora {
        padding: 0 12px;
    }
}

/* ==================================================
   HOME PAGE
   ================================================== */

:root {
    --accent: #38bdf8;
    --accent-2: #818cf8;
    --bg: #0f172a;
    --card: #020617;
    --border: rgba(148, 163, 184, 0.15);
    --text: #f8fafc;
    --muted: #94a3b8;
}

/* ===== WRAPPER ===== */
.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

/* ===== HERO ===== */
.hero {
    max-width: 820px;
    margin: 0 auto 80px;
    text-align: center;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    margin-top: 18px;
    font-size: 1.15rem;
    color: var(--muted);
}

/* ===== GRID ===== */
.menu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.menu.one {
    grid-template-columns: 1fr;
    max-width: 420px;
}

/* ===== CARD ===== */
.cardx {
    position: relative;
    background: linear-gradient(180deg, #020617, #020617cc);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 36px;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cardx::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        600px circle at var(--mx, 50%) var(--my, 50%),
        rgba(56, 189, 248, 0.25),
        transparent 45%
    );
    opacity: 0;
    transition: 0.4s ease;
}

.cardx:hover::before {
    opacity: 1;
}

.cardx:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 90px rgba(2, 6, 23, 0.8);
    border-color: rgba(56, 189, 248, 0.45);
}

/* ===== ICON (FONT AWESOME) ===== */
.icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    margin-bottom: 22px;

    background: linear-gradient(
        135deg,
        rgba(56, 189, 248, 0.18),
        rgba(129, 140, 248, 0.18)
    );

    color: var(--accent);
    transition: 0.35s ease;
}

/* icon interaction */
.cardx:hover .icon {
    color: #020617;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 20px 50px rgba(56, 189, 248, 0.5);
}

/* ===== TEXT ===== */
.title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.desc {
    color: var(--muted);
    line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
    margin-top: 26px;
}

.btnx {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    color: #020617;
    font-weight: 700;
    text-decoration: none;
    transition: 0.35s ease;
}

.cardx:hover .btnx {
    transform: translateX(6px);
    box-shadow: 0 18px 45px rgba(56, 189, 248, 0.45);
}

/* ========== END =========== */

/* ========== Verify Page =========== */

/* HEADER */
.verify-title {
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.verify-subtitle {
    color: #94a3b8;
    font-size: 0.95rem;
}

/* INPUT */
.verify-card .form-control {
    background: #111827;
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #f8fafc;
}

.verify-card .form-control::placeholder {
    color: #6b7280;
}

.verify-card .form-control:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
    background: #111827;
    color: #f8fafc;
}

/* LABEL */
.verify-card .form-label {
    color: #cbd5f5;
}

/* ALERT */
.verify-card .alert {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fecaca;
}

/* ========== END =========== */

/* ========== CREATE DOCUMENT =========== */

/* ==================================================
   UPLOAD — AURORA DARK
   ================================================== */

.upload-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.upload-card {
    max-width: 600px;
    width: 100%;
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 22px;
    padding: 32px;
    box-shadow: 0 40px 90px rgba(2, 6, 23, 0.8);
}

/* TITLE */
.upload-title {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.upload-subtitle {
    text-align: center;
    color: #94a3b8;
    margin-bottom: 28px;
    font-size: 0.95rem;
}

/* FORM */
.upload-card .form-label {
    color: #cbd5f5;
}

.upload-card .form-select {
    background: #111827;
    border: 1px solid rgba(148, 163, 184, 0.25);
    color: #f8fafc;
}

.upload-card .form-select:focus {
    border-color: #38bdf8;
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.25);
}

/* ==================================================
   DROPZONE
   ================================================== */
.drop-zone {
    border: 2px dashed rgba(56, 189, 248, 0.45);
    border-radius: 18px;
    padding: 34px 24px;
    text-align: center;
    cursor: pointer;
    transition: 0.3s ease;
    background: rgba(56, 189, 248, 0.05);
}

.drop-zone i {
    font-size: 42px;
    color: #38bdf8;
    margin-bottom: 10px;
}

.drop-zone strong {
    color: #f8fafc;
}

.drop-zone small {
    color: #94a3b8;
}

.drop-zone:hover {
    background: rgba(56, 189, 248, 0.08);
}

.drop-zone.dragover {
    background: rgba(56, 189, 248, 0.15);
    border-color: #38bdf8;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.25);
}

/* ==================================================
   FILE PREVIEW
   ================================================== */
.file-preview {
    background: #020617;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.file-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #020617;
    font-weight: 700;
}

.file-icon.pdf {
    background: linear-gradient(135deg, #f87171, #ef4444);
}

.file-icon.image {
    background: linear-gradient(135deg, #38bdf8, #818cf8);
}

.file-name {
    font-weight: 600;
    color: #f8fafc;
}

.file-meta {
    font-size: 0.85rem;
    color: #94a3b8;
}

.remove-file {
    background: none;
    border: none;
    font-size: 20px;
    color: #f87171;
    cursor: pointer;
}

/* ========== END =========== */

/* ==================================================
   SWEETALERT — DARK AURORA (FINAL CLEAN FIX)
   ================================================== */

/* BACKDROP */
.theme-dark .swal2-container {
    backdrop-filter: blur(4px);
}

/* POPUP */
.theme-dark .swal2-popup {
    /* Override SweetAlert variables */
    --swal2-background: #0f172a;
    --swal2-title-color: #ffffff;
    --swal2-html-container-color: #ffffff;

    background: var(--swal2-background) !important;
    border: 1px solid rgba(148, 163, 184, 0.25) !important;
    border-radius: 22px !important;
    box-shadow: 0 50px 120px rgba(2, 6, 23, 0.9) !important;
    padding: 2rem !important;
}

/* TITLE */
.theme-dark .swal2-title {
    color: var(--swal2-title-color) !important;
    font-weight: 700 !important;
    letter-spacing: -0.01em;
}

/* HTML CONTENT */
.theme-dark .swal2-html-container {
    color: var(--swal2-html-container-color) !important;
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

/* CONFIRM BUTTON */
.theme-dark .swal2-confirm {
    background: linear-gradient(90deg, #38bdf8, #818cf8) !important;
    color: #020617 !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    padding: 8px 24px !important;
    border: none !important;
}

.theme-dark .swal2-confirm:hover {
    box-shadow: 0 15px 40px rgba(56, 189, 248, 0.5) !important;
}

/* CANCEL BUTTON */
.theme-dark .swal2-cancel {
    background: transparent !important;
    border: 1px solid rgba(148, 163, 184, 0.4) !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    padding: 8px 24px !important;
}

.theme-dark .swal2-cancel:hover {
    background: rgba(148, 163, 184, 0.15) !important;
}

/* ICON COLORS */
.theme-dark .swal2-icon.swal2-info {
    border-color: #38bdf8 !important;
    color: #38bdf8 !important;
}

.theme-dark .swal2-icon.swal2-success {
    border-color: #38bdf8 !important;
    color: #38bdf8 !important;
}

.theme-dark .swal2-icon.swal2-error {
    border-color: #ef4444 !important;
    color: #ef4444 !important;
}

.theme-dark .swal2-icon.swal2-warning {
    border-color: #facc15 !important;
    color: #facc15 !important;
}

/* CLOSE BUTTON */
.theme-dark .swal2-close {
    color: #cbd5f5 !important;
}

.theme-dark .swal2-close:hover {
    color: #ffffff !important;
}

#message-peralihan-data {
    color: #ffffff !important;
}

/* ========== END =========== */

/* ==================================================
ALERT — DARK AURORA
================================================== */

.theme-dark .alert.alert-light {
    background: rgba(56, 189, 248, 0.08); /* soft aurora tint */
    border: 1px solid rgba(56, 189, 248, 0.25);
    color: #f8fafc; /* terang */
    backdrop-filter: blur(6px);
}

/* Optional: tambah subtle glow */
.theme-dark .alert.alert-light {
    box-shadow: 0 10px 30px rgba(2, 6, 23, 0.6);
}

/* ========== END =========== */
