/* Light Theme */
[data-bs-theme="light"]{
    --bg-color:#ffffff;
    --text-color:#000000;
    --card-bg:#f8f9fa;
    --shadow-color: rgba(0,0,0,0.15);
}

/* Dark Theme */
[data-bs-theme="dark"]{
    --bg-color:#121212;
    --text-color:#ffffff;
    --card-bg:#1e1e1e;
    --shadow-color: rgba(255, 253, 253, 0.6);
}

/* =========================
   LIGHT THEME
========================= */

[data-bs-theme="light"] body {
    background: white;
    color: black;
}

/* Custom Cards */
[data-bs-theme="light"] .my-card {
    background: #ffffff;
    color: #000;
}

/* SweetAlert2 */
[data-bs-theme="light"] .swal2-popup {
    background: white;
    color: black;
}

/* Toastify */
[data-bs-theme="light"] .toastify {
    background: #f8f9fa;
    color: black;
}

/* Fancybox */
[data-bs-theme="light"] .fancybox__backdrop {
    background: rgba(255,255,255,0.9);
}


/* =========================
   DARK THEME
========================= */

[data-bs-theme="dark"] body {
    background: #121212;
    color: white;
}

/* Custom Cards */
[data-bs-theme="dark"] .my-card {
    background: #1e1e1e;
    color: white;
    border: 1px solid #333;
}

/* SweetAlert2 */
[data-bs-theme="dark"] .swal2-popup {
    background: #1e1e1e;
    color: white;
}

/* Toastify */
[data-bs-theme="dark"] .toastify {
    background: #222;
    color: white;
}

/* Fancybox */
[data-bs-theme="dark"] .fancybox__backdrop {
    background: rgba(0,0,0,0.95);
}