/* Easter Theme - Spring pastel sky with animated grass gradient
 *
 * All colors defined as CSS variables at the top — change the palette in one place.
 * Background is driven by body::before animation (sky-to-grass gradient).
 */

/* ============================================================
   Theme Palette
   ============================================================ */
.theme-easter {
    --theme-primary:       #2196F3;   /* sky blue — buttons, headings, accents */
    --theme-primary-mid:   #42A5F5;   /* medium blue */
    --theme-primary-light: #64B5F6;   /* light blue — borders, hover */
    --theme-primary-dark:  #1976D2;   /* dark blue — active states */
    --theme-accent:        #FFD700;   /* golden yellow — borders, highlights */
    --theme-accent-light:  #FFFFE0;   /* pale yellow */
    --theme-green:         #90EE90;   /* spring green */
    --theme-green-mid:     #98FB98;   /* pale green — inputs, secondary */
    --theme-bg:            #FFFEF7;   /* cream — card backgrounds */
    --theme-text:          #2d3748;   /* body text */
    --theme-text-muted:    #5a6c7d;   /* muted text */
    --theme-radius-card:   24px 24px 12px 12px;   /* bunny-ear top corners */
    --theme-radius-btn:    20px;
    --theme-radius-input:  12px;

    /* Bridge to global utilities — makes .text-primary use theme color */
    --primary-color:       #2196F3;

    background: transparent !important;
    color: var(--theme-text) !important;
    min-height: 100vh !important;
    position: relative;
}

/* ---- Animated sky-to-grass background ---- */
body.theme-easter {
    background: transparent !important;
    color: var(--theme-text) !important;
    min-height: 100vh !important;
}

body.theme-easter::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg,
        #87CEEB 0%,
        #B0E0E6 40%,
        var(--theme-green) 70%,
        var(--theme-green-mid) 100%
    );
    animation: easterGradientShift 20s ease infinite;
}

@keyframes easterGradientShift {
    0%, 100% {
        background: linear-gradient(180deg, #87CEEB 0%, #B0E0E6 40%, #90EE90 70%, #98FB98 100%);
    }
    50% {
        background: linear-gradient(180deg, #ADD8E6 0%, #B0E0E6 40%, #98FB98 70%, #90EE90 100%);
    }
}

/* Easter egg hunt JS decorations */
.theme-easter .easter-decoration {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* ---- Transparent containers ---- */
.theme-easter .container,
.theme-easter .container-narrow,
.theme-easter main,
.theme-easter .py-2,
.theme-easter .py-md-5,
.theme-easter .py-4 {
    background: transparent !important;
}

/* ---- Cards — bunny-ear rounded top corners ---- */
.theme-easter .card {
    background: var(--theme-bg) !important;
    border: 3px solid var(--theme-primary-light) !important;
    border-radius: var(--theme-radius-card) !important;
    box-shadow: 0 4px 12px rgba(66, 165, 245, 0.3) !important;
}

.theme-easter .card-body {
    background: transparent !important;
}

/* ---- Typography ---- */

/* Page headings — on animated sky/grass background */
.theme-easter h1,
.theme-easter h2,
.theme-easter h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Card headings — on cream card background */
.theme-easter .card .card-title,
.theme-easter .card h1,
.theme-easter .card h2,
.theme-easter .card h3 {
    color: var(--theme-primary) !important;
    text-shadow: none !important;
    font-weight: 700 !important;
}

.theme-easter p,
.theme-easter .card-text,
.theme-easter .ql-editor {
    color: var(--theme-text) !important;
}

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

.theme-easter .text-warning {
    color: #b45309 !important;
}

.theme-easter .form-label {
    color: var(--theme-text) !important;
    font-weight: 600 !important;
}

.theme-easter ::placeholder {
    color: #9ca3af !important;
    opacity: 0.7 !important;
}

.theme-easter .required-asterisk {
    color: var(--theme-primary) !important;
    font-weight: bold !important;
}

/* ---- Form Inputs ---- */
.theme-easter .form-control,
.theme-easter .form-select,
.theme-easter textarea {
    background: #ffffff !important;
    border: 2px solid var(--theme-green-mid) !important;
    color: var(--theme-text) !important;
    border-radius: var(--theme-radius-input) !important;
    font-size: 16px !important; /* Prevents iOS zoom — do not remove */
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

/* Smaller font for date/time inputs to prevent overflow */
.theme-easter .date-row-input,
.theme-easter .time-row-input,
.theme-easter .timezone-row-select,
.theme-easter .duration-row-select,
.theme-easter input[type="date"],
.theme-easter input[type="time"],
.theme-easter #futurePeriodType,
.theme-easter #hideOptionLeadHoursContainer {
    font-size: 14px !important;
}

/* Compact inline selects need smaller border-radius to avoid clipping */
.theme-easter #futurePeriodType,
.theme-easter #hideOptionLeadHoursContainer {
    border-radius: 6px !important;
}

.theme-easter .form-control:focus,
.theme-easter .form-select:focus,
.theme-easter textarea:focus {
    border-color: var(--theme-primary-light) !important;
    box-shadow: 0 0 0 3px rgba(66, 165, 245, 0.25) !important;
    outline: none !important;
}

/* ---- Checkboxes & Radio Buttons ---- */

/* Base — MUST use background-color NOT background shorthand (Issue 19) */
.theme-easter .form-check-input {
    background-color: #ffffff !important;
    border: 2px solid var(--theme-primary-light) !important;
    border-radius: 4px !important;
    width: 20px !important;
    height: 20px !important;
    transition: all 0.3s ease !important;
}

/* Radio — circle */
.theme-easter .form-check-input[type="radio"] {
    border-radius: 50% !important;
}

/* Checked — MUST use background-color NOT background shorthand */
.theme-easter .form-check-input:checked {
    background-color: var(--theme-accent) !important;
    border-color: var(--theme-accent) !important;
}

/* Solid fill on checked radio — suppress Bootstrap's inner white dot (Issue 17) */
.theme-easter .form-check-input[type="radio"]:checked {
    background-image: none !important;
}

.theme-easter .form-check-label {
    color: var(--theme-text) !important;
    font-weight: 500 !important;
}

/* Vertical alignment for checkbox/radio rows (excludes toggle switches) */
.theme-easter .form-check:not(.form-switch) {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.theme-easter .form-check:not(.form-switch) .form-check-input {
    margin-top: 0 !important;
    flex-shrink: 0 !important;
}

.theme-easter .form-check:not(.form-switch) .form-check-label {
    margin-bottom: 0 !important;
}

/* Preserve inline-block when Bootstrap d-inline-block is used (e.g. Silent Save checkbox) */
.theme-easter .form-check.d-inline-block:not(.form-switch) {
    display: inline-flex !important;
}

/* ---- Toggle Switches ---- */
/* White thumb via --bs-form-switch-bg (Issue 19 — do NOT use background-image: none) */
.theme-easter .form-switch .form-check-input {
    --bs-form-switch-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffffff'/%3e%3c/svg%3e");
    background-color: rgba(66, 165, 245, 0.25) !important;
    border: 2px solid var(--theme-primary-light) !important;
    border-radius: 2em !important;
    width: 2em !important;
    height: 1em !important;
}

.theme-easter .form-switch .form-check-input:checked {
    background-color: var(--theme-primary) !important;
    border-color: var(--theme-primary-mid) !important;
}

/* ---- Primary Buttons ---- */
.theme-easter .btn-primary,
.theme-easter button[type="submit"],
.theme-easter #submitBtn {
    background: linear-gradient(135deg, var(--theme-primary-light), var(--theme-primary-mid)) !important;
    border: none !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    border-radius: var(--theme-radius-btn) !important;
    padding: 12px 28px !important;
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.4) !important;
    transition: all 0.3s ease !important;
}

.theme-easter .btn-primary:hover,
.theme-easter button[type="submit"]:hover,
.theme-easter #submitBtn:hover {
    background: linear-gradient(135deg, #90CAF9, var(--theme-primary-light)) !important;
    box-shadow: 0 6px 20px rgba(100, 181, 246, 0.5) !important;
    transform: translateY(-3px) scale(1.02) !important;
    color: #ffffff !important;
}

.theme-easter .btn-primary:active,
.theme-easter button[type="submit"]:active,
.theme-easter #submitBtn:active {
    background: linear-gradient(135deg, var(--theme-primary), var(--theme-primary-dark)) !important;
    transform: translateY(0) scale(0.98) !important;
}

.theme-easter .btn-primary:focus,
.theme-easter button[type="submit"]:focus,
.theme-easter #submitBtn:focus {
    outline: 3px solid rgba(66, 165, 245, 0.5) !important;
    outline-offset: 2px;
}

/* ---- Outline Buttons ---- */
.theme-easter .btn-outline-primary {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid var(--theme-primary-light) !important;
    color: var(--theme-primary) !important;
    font-weight: 600 !important;
    border-radius: var(--theme-radius-btn) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease !important;
}

.theme-easter .btn-outline-primary:hover {
    background: #ffffff !important;
    border-color: var(--theme-primary-mid) !important;
    color: var(--theme-primary) !important;
    box-shadow: 0 6px 16px rgba(66, 165, 245, 0.3) !important;
    transform: translateY(-2px) scale(1.02) !important;
}

/* Active/Checked state for toggle button groups */
.theme-easter .btn-check:checked + .btn-outline-primary,
.theme-easter .btn-outline-primary.active {
    background: linear-gradient(135deg, var(--theme-primary-light), var(--theme-primary-mid)) !important;
    border-color: var(--theme-primary-light) !important;
    color: #ffffff !important;
}

.theme-easter .btn-check:checked + .btn-outline-primary .bi,
.theme-easter .btn-outline-primary.active .bi {
    color: #ffffff !important;
}

.theme-easter .btn-outline-danger {
    color: var(--theme-primary) !important;
    border-color: var(--theme-primary) !important;
    border-width: 2px !important;
    border-radius: var(--theme-radius-btn) !important;
    font-weight: 600 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
}

.theme-easter .btn-outline-danger:hover {
    background: var(--theme-primary) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(66, 165, 245, 0.3) !important;
    transform: translateY(-1px);
}

/* ---- Secondary Buttons ---- */
.theme-easter .btn-secondary {
    background: linear-gradient(135deg, var(--theme-green-mid), var(--theme-green)) !important;
    border: none !important;
    color: var(--theme-text) !important;
    font-weight: 600 !important;
    border-radius: var(--theme-radius-btn) !important;
    box-shadow: 0 4px 12px rgba(152, 251, 152, 0.4) !important;
    transition: all 0.3s ease !important;
}

.theme-easter .btn-secondary:hover,
.theme-easter .btn-secondary:active,
.theme-easter .btn-secondary:focus {
    background: linear-gradient(135deg, var(--theme-green), var(--theme-green-mid)) !important;
    box-shadow: 0 6px 16px rgba(152, 251, 152, 0.5) !important;
    transform: translateY(-2px) scale(1.02) !important;
    color: var(--theme-text) !important;
}

/* ---- List Items (Options) ---- */
.theme-easter .list-group-item {
    background: #ffffff !important;
    border: 2px solid var(--theme-accent) !important;
    border-radius: var(--theme-radius-input) !important;
    color: var(--theme-text) !important;
    margin-bottom: 12px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.2) !important;
    position: relative;
    padding-left: 20px !important;
}

/* Left accent bar */
.theme-easter .list-group-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--theme-primary-light), var(--theme-accent));
    border-radius: 12px 0 0 12px;
}

.theme-easter .list-group-item:hover {
    background: rgba(255, 215, 0, 0.1) !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
    transform: translateY(-2px);
}

/* Option link icons stay blue */
.theme-easter .list-group-item .option-link-icon .bi {
    color: #0066cc !important;
}

/* ---- Disabled / Taken Options ---- */
.theme-easter .list-group-item input:disabled + label {
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
    text-decoration: line-through !important;
}

.theme-easter .list-group-item input:disabled ~ small {
    color: var(--theme-primary) !important;
    font-weight: 600 !important;
}

.theme-easter .list-group-item:has(input:disabled) {
    background: rgba(66, 165, 245, 0.15) !important;
    border-color: var(--theme-primary-light) !important;
    opacity: 0.7 !important;
}

.theme-easter .list-group-item:has(input:disabled):hover {
    cursor: not-allowed !important;
    transform: none !important;
}

/* ---- Quill Editor ---- */
.theme-easter .ql-toolbar.ql-snow {
    background: #ffffff !important;
    border-color: var(--theme-green-mid) !important;
    border-radius: 12px 12px 0 0 !important;
}

.theme-easter .ql-container.ql-snow {
    background: #ffffff !important;
    border-color: var(--theme-green-mid) !important;
    border-radius: 0 0 12px 12px !important;
}

/* ---- Alerts ---- */
.theme-easter .alert {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid var(--theme-accent) !important;
    color: var(--theme-text) !important;
    border-radius: var(--theme-radius-input) !important;
}

/* ---- Form Sections ---- */
.theme-easter .form-section-respondent,
.theme-easter .form-section-main-options,
.theme-easter .form-section-additional {
    border-color: var(--theme-primary-light) !important;
    box-shadow: 0 6px 20px rgba(66, 165, 245, 0.2) !important;
    border-radius: var(--theme-radius-btn) !important;
}

.theme-easter .form-section-header {
    background: linear-gradient(135deg, var(--theme-primary-light), var(--theme-accent)) !important;
    color: #ffffff !important;
    border-bottom: none !important;
    border-radius: 17px 17px 0 0 !important;
    font-weight: 700 !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ---- Additional Questions ---- */
.theme-easter .additional-question-section .card,
.theme-easter .additional-question-item {
    background: var(--theme-bg) !important;
    border: 3px solid var(--theme-green-mid) !important;
    box-shadow: 0 4px 12px rgba(152, 251, 152, 0.3) !important;
}

/* Icons inside cards/question items — dark by default */
.theme-easter .card .bi,
.theme-easter .additional-question-item .bi {
    color: var(--theme-text) !important;
}

/* Inside buttons, icons inherit button color */
.theme-easter .card .btn .bi,
.theme-easter .card .btn i,
.theme-easter .additional-question-item .btn .bi,
.theme-easter .additional-question-item .btn i {
    color: inherit !important;
}

/* Trash/delete question buttons — red */
.theme-easter .remove-additional-question-btn,
.theme-easter .remove-additional-question-btn .bi {
    color: #dc3545 !important;
}

/* ---- Question Type Pills ---- */
.theme-easter .question-type-pill {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--theme-primary) !important;
    border: 1px solid var(--theme-primary-light) !important;
}

.theme-easter .question-type-pill:hover {
    background: rgba(66, 165, 245, 0.1) !important;
    color: var(--theme-primary-dark) !important;
    border-color: var(--theme-primary-mid) !important;
}

.theme-easter .question-type-pill.active {
    background: linear-gradient(135deg, var(--theme-primary-light), var(--theme-primary-mid)) !important;
    color: #ffffff !important;
    border-color: var(--theme-primary) !important;
}

.theme-easter .question-type-pill.active i,
.theme-easter .question-type-pill.active .bi {
    color: #ffffff !important;
}

.theme-easter .question-type-pill i,
.theme-easter .question-type-pill .bi {
    color: inherit !important;
}

/* ---- Drag Handles ---- */
.theme-easter .drag-handle {
    color: var(--theme-primary-light) !important;
}

/* ---- Option Items (form editor) ---- */
.theme-easter .option-item {
    background: #ffffff !important;
    border: 2px solid var(--theme-green-mid) !important;
    box-shadow: 0 2px 8px rgba(152, 251, 152, 0.2) !important;
    border-radius: var(--theme-radius-input) !important;
}

.theme-easter .option-item:hover {
    box-shadow: 0 4px 12px rgba(66, 165, 245, 0.3) !important;
    transform: translateY(-2px);
    border-color: var(--theme-primary-light) !important;
}

/* ---- Icons ---- */
.theme-easter .bi-calendar-event-fill,
.theme-easter .bi-clock-fill,
.theme-easter .bi-geo-alt-fill {
    color: var(--theme-primary) !important;
}

.theme-easter .max-signups-icon {
    color: var(--theme-primary-light) !important;
}

/* ---- Navbar ---- */
.theme-easter .navbar {
    background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-green-mid) 50%, var(--theme-accent-light) 100%) !important;
    border-bottom: 3px solid var(--theme-accent) !important;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3) !important;
}

.theme-easter .navbar-brand {
    font-weight: 700 !important;
}

.theme-easter .nav-link {
    color: var(--theme-text) !important;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.theme-easter .nav-link:hover {
    color: var(--theme-primary) !important;
}

/* "Grasshopper" — deep blue, white glow shadow for contrast on pastel navbar */
.theme-easter .brand-text-primary {
    color: #1565C0 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.6) !important;
    font-weight: 700 !important;
    transition: color 0.3s ease !important;
}

/* "Signup" — golden yellow (Easter egg color) */
.theme-easter .brand-text-white {
    color: var(--theme-accent) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2), 0 0 6px rgba(255, 215, 0, 0.4) !important;
    font-weight: 700 !important;
    transition: color 0.3s ease !important;
}

/* Logo icon — filtered to match "Grasshopper" deep blue + glow */
.theme-easter .navbar-brand img {
    filter: brightness(0) saturate(100%) invert(25%) sepia(80%) saturate(1500%) hue-rotate(200deg) brightness(95%) contrast(105%) drop-shadow(0 0 4px rgba(255, 255, 255, 0.7)) drop-shadow(0 1px 3px rgba(255, 255, 255, 0.5));
    transition: filter 0.3s ease !important;
}

/* Hover — "Grasshopper" shifts to pale spring green */
.theme-easter .navbar-brand:hover .brand-text-primary {
    color: #66bb6a !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9), 0 0 10px rgba(255, 255, 255, 0.7) !important;
}

.theme-easter .navbar-brand:hover .brand-text-white {
    color: var(--theme-accent) !important;
}

.theme-easter .navbar-brand:hover img {
    filter: brightness(0) saturate(100%) invert(25%) sepia(80%) saturate(1500%) hue-rotate(200deg) brightness(95%) contrast(105%) drop-shadow(0 0 4px rgba(255, 255, 255, 0.7)) drop-shadow(0 1px 3px rgba(255, 255, 255, 0.5));
}

.theme-easter .navbar-toggler {
    border-color: var(--theme-accent) !important;
}

.theme-easter .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2844, 62, 80, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.theme-easter .nav-auth-icon {
    color: rgba(44, 62, 80, 0.9) !important;
}

/* ---- Footer ---- */
.theme-easter .footer {
    background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-green-mid) 50%, var(--theme-accent-light) 100%) !important;
    border-top: 3px solid var(--theme-accent) !important;
    box-shadow: 0 -4px 12px rgba(255, 215, 0, 0.3) !important;
}

.theme-easter .footer p {
    color: var(--theme-text) !important;
    font-weight: 600 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Footer links + all descendants (overrides inline style on <i> icons — Issue 11) */
.theme-easter .footer a,
.theme-easter .footer a * {
    color: var(--theme-primary) !important;
    font-weight: 600 !important;
}

.theme-easter .footer a:hover,
.theme-easter .footer a:hover * {
    color: var(--theme-primary-dark) !important;
}

/* ---- Modals ---- */
.theme-easter .modal-backdrop {
    display: none;
}

.theme-easter .modal-content {
    background: var(--theme-bg) !important;
    border: 3px solid var(--theme-primary-light) !important;
    border-radius: 20px !important;
    box-shadow: 0 12px 40px rgba(66, 165, 245, 0.3) !important;
}

.theme-easter .modal-header {
    background: transparent !important;
    border-bottom: none !important;
    padding: 1.5rem 1.5rem 0.5rem !important;
}

.theme-easter .modal-title {
    color: var(--theme-primary) !important;
    font-weight: 700 !important;
}

.theme-easter .modal-body {
    color: var(--theme-text) !important;
    background: transparent !important;
    padding: 1rem 1.5rem !important;
}

.theme-easter .modal-footer {
    background: transparent !important;
    border-top: 1px solid rgba(66, 165, 245, 0.2) !important;
    padding: 0.5rem 1.5rem 1.5rem !important;
}

/* ---- Spreadsheet Modal — full theme opt-out (Issue 15) ---- */

.theme-easter #ssModal *,
.theme-easter #ssModal h1,
.theme-easter #ssModal h2,
.theme-easter #ssModal h3,
.theme-easter #ssModal h4,
.theme-easter #ssModal h5,
.theme-easter #ssModal h6,
.theme-easter #ssModal p,
.theme-easter #ssModal small,
.theme-easter #ssModal .text-muted {
    color: #212529 !important;
    text-shadow: none !important;
    filter: none !important;
}

.theme-easter #ssModal .btn i,
.theme-easter #ssModal .btn .bi {
    color: inherit !important;
}

.theme-easter #ssModal .text-danger,
.theme-easter #ssModal .text-danger i,
.theme-easter #ssModal .text-danger .bi {
    color: #dc3545 !important;
}

.theme-easter #ssModal .spreadsheet-delete-row {
    background: transparent !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    transform: none !important;
}

.theme-easter #ssModal .modal-content {
    background-color: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.2) !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: none !important;
}

.theme-easter #ssModal .modal-header {
    background-color: transparent !important;
    border-bottom: 1px solid #dee2e6 !important;
    padding: 1rem !important;
}

.theme-easter #ssModal .modal-body {
    background-color: transparent !important;
    padding: 1rem !important;
}

.theme-easter #ssModal .modal-footer {
    background-color: transparent !important;
    border-top: 1px solid #dee2e6 !important;
    padding: 0.75rem !important;
}

.theme-easter #ssModal .btn-primary {
    background: linear-gradient(135deg, var(--theme-primary-light) 0%, var(--theme-primary-mid) 100%) !important;
    border: 1px solid var(--theme-primary) !important;
    color: #ffffff !important;
    border-radius: var(--theme-radius-btn) !important;
    padding: 0.25rem 0.75rem !important;
    font-weight: 600 !important;
    box-shadow: 0 0 8px rgba(66, 165, 245, 0.4) !important;
    transform: none !important;
}

.theme-easter #ssModal .btn-primary:hover {
    background: linear-gradient(135deg, var(--theme-primary-mid) 0%, var(--theme-primary) 100%) !important;
    box-shadow: 0 0 14px rgba(66, 165, 245, 0.7) !important;
    transform: none !important;
}

.theme-easter #ssModal .btn-outline-secondary {
    color: #ffffff !important;
    border: 1px solid var(--theme-primary) !important;
    background: var(--theme-primary) !important;
    border-radius: var(--theme-radius-btn) !important;
    padding: 0.25rem 0.75rem !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    transform: none !important;
}

.theme-easter #ssModal .btn-outline-secondary:hover {
    background: var(--theme-primary-mid) !important;
    border-color: var(--theme-primary-mid) !important;
    color: #ffffff !important;
    transform: none !important;
}

.theme-easter #ssModal .btn-outline-danger {
    color: var(--theme-primary) !important;
    border: 1px solid var(--theme-primary) !important;
    background: transparent !important;
    border-radius: var(--theme-radius-btn) !important;
    padding: 0.25rem 0.75rem !important;
    font-weight: 500 !important;
    box-shadow: none !important;
    transform: none !important;
}

.theme-easter #ssModal .btn-outline-danger:hover {
    background: rgba(66, 165, 245, 0.12) !important;
    color: var(--theme-primary) !important;
    transform: none !important;
}

.theme-easter #ssModal input,
.theme-easter #ssModal .form-control {
    background-color: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    color: #212529 !important;
    box-shadow: none !important;
}

/* ---- Smooth transitions ---- */
.theme-easter .btn,
.theme-easter .form-control,
.theme-easter .list-group-item {
    transition: all 0.3s ease !important;
}
