/* ==========================================
   BASE STYLES
   Variables, Typography, Resets, Utilities
   ========================================== */

/* ===== CSS VARIABLES ===== */
:root {
    /* Brand Colors */
    --light: #f4f4f4;
    --light-blur: rgba(244, 244, 244, 0.8);
    --lighter-blur: rgba(244, 244, 244, 0.5);
    --light-bg: #f4f4f4;
    --white: #ffffff;
    --dark: #1a1a1a;
    --dark-blur: rgba(25, 27, 40, 0.8);
    --dark-bg: #191b28;
    --branding-blue: #2a2f6b;
    --branding-gold: #6c6601;
    --branding-gold-light: rgb(108, 102, 1, 0.70);
    --branding-gold-bg: rgb(108, 102, 1, 0.10);
    --branding-blue-bg: rgb(42, 47, 107, 0.10);
    
    /* Text Colors */
    --text-grey-light: #666666;
    --text-grey-lighter: #999999;
    --grey-border: #ddd;
    
    /* UI Elements */
    --overlay: rgba(0, 0, 0, 0.66);
    --box-radius: 4px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    
    /* Theme Variables - Light Mode Default */
    --bg: var(--light-bg);
    --bg-contrast: var(--dark);
    --blur: var(--light-blur);
    --hero-blur: rgba(244, 244, 244, 0.2);
    --text: var(--dark);
    --text-contrast: var(--light);
    --paragraph-text: var(--text-grey-light);
    --line-divider: var(--dark);
    
    /* Service Status Colors */
    --pending: #f59e0b;
    --quoted: #3b82f6;
    --accepted: #10b981;
    --confirmed: #076e4c;
    --rejected: #b12d2d;
    --in-progress: #8b5cf6;
    --ready: #097467;
    --cancelled: #ef4444;
    --completed: #22c55e;
    
    /* Parent Order Status Colors */
    --new: #06b6d4;
    --waiting: #f97316;
    --active: #a855f7;
    --closed: #64748b;
    
    /* Invoice Status Colors */
    --paid: #22c55e;
    --late: #dc2626;
    --void: #2769ee;
    
    /* Service Type Colors */
    --catering: #2e7d32;
    --cleaning: #1565c0;
    --laundry: #6a1b9a;
    
    /* User Role Colors */
    --operations: #8219a6;
    --manager: #10b99d;
    --client: #969137;
    
    /* Operator Sub-Role Colors */
    --operator-catering: #10b981;
    --operator-cleaning: #3b82f6;
    --operator-laundry: #8b5cf6;
    --operator-delivery: #f59e0b;
    --operator-general: #64748b;
    
    /* Dietary/Allergen Colors */
    --dietary: #2e7d32;
    --allergen: #e65100;

    /* Menu Category Badge Color */
    --menu-category: #ed591e;
    --category: #475569;
    --subcategory: #0891b2;

    /* Task Source Badge Colors */
    --task-source-menu: #0e7f6e;
    --task-source-custom: #7c3aed;
    --task-source-manual: #b45309;

    /* Assignment Badge Colors */
    --assign-none: #af691a;
    --assign-manager: #10aeb9;
    --assign-staff: #2a6b5d;

    /* Quote Badge Colors */
    --quote-none: #6b7280;
    --quote-ready: #b45309;
    --quote-sent: #7797ec;

    /* Invoice Badge Colors */
    --invoice-none: #6b7280;
    --invoice-created: #b45309;
    --invoice-sent: #16a34a;

    /* Dashboard UI Colors */
    --bg-white: #ffffff;
    --border-light: #ddd;
    --border-dark: #999;
    --primary-blue: #3b82f6;
    --primary-light: rgba(59, 130, 246, 0.1);
    --danger: #dc2626;
    --danger-dark: #991b1b;
    --accept-btns: rgb(46, 105, 46);
    --accept-btns-light: #16a34a;
    --reject-btns: #921313c9;
    --reject-btns-light: #e42c2c;
}

/* Dark Theme */
body[data-theme="dark-theme"] {
    --bg: var(--dark-bg);
    --bg-contrast: var(--light);
    --blur: var(--dark-blur);
    --hero-blur: var(--dark-blur);
    --text: var(--light);
    --text-contrast: var(--dark);
    --paragraph-text: var(--text-grey-lighter);
    --line-divider: var(--branding-gold);
}

body[data-theme="dark-theme"] .logo-light {
    display: none;
}

/* Light Theme */
body[data-theme="light-theme"] {
    --bg: var(--light-bg);
    --bg-contrast: var(--dark);
    --blur: var(--light-blur);
    --hero-blur: rgba(244, 244, 244, 0.2);
    --text: var(--dark);
    --text-contrast: var(--light);
    --paragraph-text: var(--text-grey-light);
    --line-divider: var(--dark);
}

body[data-theme="light-theme"] .logo-dark {
    display: none;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    background-color: var(--bg);
    color: var(--text);
    font-family: 'Zalando Sans', sans-serif;
    transition: background-color 1s cubic-bezier(0.4, 0, 0.2, 1), 
                color 1s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p {
    font-size: .85rem;
    line-height: 1.5;
    font-weight: 300;
    color: var(--paragraph-text);
}

a {
    text-decoration: none;
    color: var(--text);
}

.big-p {
    font-size: .9rem;
    line-height: 1.7;
    color: var(--text);
}

/* ===== UTILITY CLASSES ===== */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.hidden {
    display: none !important;
}

.show {
    display: block !important;
}

/* Text utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Margin utilities */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

/* Flex utilities */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.align-items-center { align-items: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-center { justify-content: center; }

.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* Container */
.main-content {
    display: flex;
    flex-direction: column;
    gap: 15rem;
}

/* ==========================================
   SHARED BUTTON STYLES
   ========================================== */

.btn-primary,
.btn-outline,
.btn-primary-over-image {
    display: inline-block;
    padding: 0.5rem 3rem;
    font-size: 0.8rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--box-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    border: 1px solid transparent;
    background: none;
    font-family: inherit;
}

.btn-primary,
.btn-primary-over-image {
    border: 1px solid var(--branding-gold);
    background-color: var(--branding-gold);
    color: var(--light);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text);
    border-color: var(--text);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    background-color: transparent;
    color: var(--text);
    border: 1px solid var(--text);
}

.btn-outline:hover {
    border-color: var(--branding-gold);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-primary-over-image:hover {
    background-color: transparent;
    border-color: var(--light);
    color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* ===== Dashboard Action Buttons ===== */

.btn-submit {
    display: inline-block;
    padding: 0.2rem 1.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--box-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    background: var(--branding-blue);
    border: 1px solid var(--branding-blue);
    color: var(--light);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit-gold {
    display: inline-block;
    padding: 0.2rem 1.5rem;
    font-size: 0.75rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--box-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    background: var(--branding-gold);
    border: 1px solid var(--branding-gold);
    color: var(--light);
}

.btn-submit-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-submit-gold:active {
    transform: translateY(0);
}

.btn-edit {
    display: inline-block;
    padding: 0.1rem 1.2rem;
    font-size: 0.7rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--box-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    background-color: transparent;
    border: 1.5px solid var(--branding-blue);
    color: var(--branding-blue);
}

.btn-edit:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-edit:active {
    transform: translateY(0);
}

.btn-cancel {
    display: inline-block;
    padding: 0.1rem 1.2rem;
    font-size: 0.7rem;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: var(--box-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    font-family: inherit;
    background-color: transparent;
    border: 1.5px solid var(--danger-dark);
    color: var(--danger-dark);
}

.btn-cancel:hover {
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-remove {
    padding: 0.5rem;
    background: transparent;
    color: var(--rejected);
    border: none;
    border-radius: var(--box-radius);
    cursor: pointer;
}

.btn-remove:hover {
    scale: 1.1;
    transform: translateY(-2px);
}

.btn-cancel:active {
    transform: translateY(0);
}

.return-btn {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--box-radius);
    font-size: .85rem;
    transition: all 0.3s;
    font-weight: 500;
}

.return-btn:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-2px);
}

/* ==========================================
   NAVBAR STYLES
   ========================================== */

header {
    position: relative;
    z-index: 1000;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.nav-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--blur);
    opacity: 1;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.navbar--transparent .nav-container::before {
    opacity: 0;
}

/* Transparent navbar — white elements over hero */
body .navbar--transparent .logo-light { display: none; }
body .navbar--transparent .logo-dark  { display: block; }

.navbar--transparent .nav-toggle .bar {
    background: var(--white);
}

.navbar--transparent .nav-icons a {
    color: var(--white);
}

.navbar--transparent .lang-selector-navbar .lang-btn {
    color: var(--white);
}

.navbar--transparent .lang-selector-navbar .lang-btn-active {
    color: var(--branding-gold);
}

.navbar--transparent .lang-selector-navbar .lang-divider {
    color: var(--white);
}

/* Logo */
.nav-logo-img {
    height: 60px;
}

/* Icons Container (Right Side) */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--branding-gold);
    color: var(--white);
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    padding: 0 4px;
    font-size: 0.7rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hamburger Icon */
.nav-toggle {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle .bar {
    width: 24px;
    height: 3px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle:hover .bar {
    background: var(--branding-gold);
    transform: scale(1.1);
}

/* ==========================================
   LANGUAGE SELECTOR STYLES
   ========================================== */

/* Common styles for both navbar and overlay */
.lang-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.lang-btn {
    background: none;
    border: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.25rem;
}

.lang-btn:hover {
    opacity: 0.7;
}

.lang-btn-active {
    font-size: 1.1rem;
    font-weight: 600;
}

.lang-divider {
    font-size: 0.9rem;
}

/* Navbar specific (desktop) */
.lang-selector-navbar {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.lang-selector-navbar .lang-btn {
    color: var(--text);
}

.lang-selector-navbar .lang-btn-active {
    color: var(--branding-gold);
}

.lang-selector-navbar .lang-divider {
    color: var(--text);
}

/* Overlay specific */
.lang-selector-overlay {
    margin-bottom: 3rem;
}

.lang-selector-overlay .lang-btn {
    color: var(--text-contrast);
}

.lang-selector-overlay .lang-btn-active {
    color: var(--branding-gold);
}

.lang-selector-overlay .lang-divider {
    color: var(--text-contrast);
}

/* Hide navbar language on mobile */
@media (max-width: 768px) {
    .lang-selector-navbar {
        display: none;
    }
}

/* ==========================================
   OVERLAY MENU
   ========================================== */

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-contrast);
    color: var(--text-contrast);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

/* Close Button */
.nav-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--text-contrast);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-close:hover {
    transform: rotate(90deg);
}

/* Navigation Links */
.nav-links {
    list-style: none;
    padding: 0;
    text-align: center;
}

.nav-links li {
    margin: 1.5rem 0;
}

.nav-links a {
    color: var(--text-contrast);
    font-weight: 300;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
}

.nav-links a:hover {
    color: var(--branding-gold);
    letter-spacing: 0.1em;
}

.sub-nav-links {
    margin-top: 2rem;
}

.main-nav-links a {
    font-size: 1.5rem;
}

.sub-nav-links a {
    font-size: 1.2rem;
}

/* ==========================================
   MENU NAV (Menu Page Only)
   ========================================== */

.menu-nav.hidden {
    display: none;
}

.menu-nav {
    position: fixed;
    top: 60px;
    width: 100%;
    background-color: var(--blur);
    z-index: 999;
}

.menu-nav-container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--text);
    flex-wrap: wrap;
}

.menu-nav-link {
    padding: 1rem 1rem;
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.menu-nav-link.active {
    color: var(--branding-gold);
    border-bottom-color: var(--branding-gold);
}

.menu-nav-link:hover {
    border-bottom-color: var(--text);
}

/* ==========================================
   FOOTER
   ========================================== */

.footer {
    margin-top: 8rem;
    border-top: 1px solid;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem 2rem;
}

/* --- Top Row --- */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Brand / Logo column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    display: inline-block;
}

.footer-logo-img {
    height: 8rem;
    display: block;
}

/* Show correct logo variant based on theme */
.footer-logo-img.logo-light { display: block; }
.footer-logo-img.logo-dark  { display: none;  }

body[data-theme="dark-theme"] .footer-logo-img.logo-light { display: none;  }
body[data-theme="dark-theme"] .footer-logo-img.logo-dark  { display: block; }

.footer-tagline {
    max-width: 250px;
}

/* Nav columns */
.footer-col-title {
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--grey-border);
    padding-bottom: 0.5rem;
}

.footer-nav-list,
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-nav-list a,
.footer-contact-list a {
    font-size: 0.875rem;
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

.footer-nav-list a:hover,
.footer-contact-list a:hover {
    transform: scale(1.2);
}

.footer-nav-list a::after,
.footer-contact-list a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--branding-gold);
    transition: width 0.25s ease;
}

.footer-nav-list a:hover::after,
.footer-contact-list a:hover::after {
    width: 100%;
}

.footer-location {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* --- Divider --- */
.footer-divider {
    height: 1px;
    margin: 3rem 0 2rem;
}

/* --- Bottom Row --- */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    gap: 2rem;
}

.footer-legal-links {
    list-style: none;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-legal-links a {
    font-size: 0.8rem;
    position: relative;
    display: inline-block;
    transition: transform 0.2s ease;
}

.footer-legal-links a:hover {
    transform: scale(1.08);
    transform-origin: left center;
}

.footer-legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--branding-gold);
    transition: width 0.25s ease;
}

.footer-legal-links a:hover::after {
    width: 100%;
}

/* ==========================================
   RESPONSIVE (Navbar & Footer)
   ========================================== */

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }

    .nav-logo-img {
        height: 50px;
    }

    .lang-selector-navbar {
        display: none;
    }

    .nav-icons {
        gap: 1rem;
    }

    .icon-svg {
        width: 20px;
        height: 20px;
    }

    .nav-toggle .bar {
        width: 20px;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-legal-links {
        flex-wrap: wrap;
        gap: 1rem;
    }
}

/* ==========================================
   DJANGO MESSAGES FRAMEWORK
   Site-wide notification system
   ========================================== */

/* Container - Fixed positioning, top-right on desktop, top-center on mobile */
.django-messages-container {
    position: fixed;
    top: 80px;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10001;
    max-width: 400px;
    pointer-events: none;
}

/* Individual Message */
.django-message {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--box-radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    font-size: 0.95rem;
    line-height: 1.5;
    pointer-events: auto;
    animation: slideInRight 0.3s ease-out;
    transition: all 0.3s ease;
}

.django-message:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Message Content */
.django-message__content {
    flex: 1;
    font-weight: 500;
}

/* Close Button */
.django-message__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    padding: 0;
    margin: 0;
    color: inherit;
}

.django-message__close:hover {
    opacity: 1;
}

/* Message Types */
.django-message--success {
    background-color: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.django-message--error {
    background-color: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.django-message--warning {
    background-color: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.django-message--info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-left: 4px solid #17a2b8;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.django-message--fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

/* Dark Theme Support */
body[data-theme="dark-theme"] .django-message--success {
    background-color: rgba(40, 167, 69, 0.2);
    color: #7dffb3;
    border-left-color: #28a745;
}

body[data-theme="dark-theme"] .django-message--error {
    background-color: rgba(220, 53, 69, 0.2);
    color: #ff9999;
    border-left-color: #dc3545;
}

body[data-theme="dark-theme"] .django-message--warning {
    background-color: rgba(255, 193, 7, 0.2);
    color: #ffd966;
    border-left-color: #ffc107;
}

body[data-theme="dark-theme"] .django-message--info {
    background-color: rgba(23, 162, 184, 0.2);
    color: #7dd3de;
    border-left-color: #17a2b8;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .django-messages-container {
        top: 70px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        max-width: calc(100% - 2rem);
        width: 100%;
        align-items: center;
    }

    .django-message {
        width: 100%;
        max-width: 400px;
    }

    @keyframes slideInRight {
        from {
            transform: translateY(-100px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes fadeOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-50px);
        }
    }
}
