/* iOS/macOS Premium Design System */

:root {
    --iosBlue: #007AFF;
    --iosBlue-hover: #0063CC;
    --iosDark: #000000;
    --iosCardDark: #1C1C1E;
    --iosBg: #FAF9F6;
    --radius-ios: 1.2rem;
    --radius-ios-lg: 2.5rem;
    --glass-bg: rgba(255, 255, 255, 0.88);
    --glass-bg-dark: rgba(28, 28, 30, 0.7);
    --glass-border: rgba(0, 0, 0, 0.06);
    --glass-border-dark: rgba(255, 255, 255, 0.1);
    --text-secondary: #636366;
    --font-stack: '-apple-system', 'BlinkMacSystemFont', 'SF Pro Display', 'Inter', 'Segoe UI', sans-serif;
}

html,
body {
    font-family: var(--font-stack) !important;
    background-color: var(--iosBg);
    color: #1d1d1f;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.015em;
    scroll-behavior: smooth;
}

.dark html,
.dark body {
    background-color: var(--iosDark);
    color: #f5f5f7;
}

/* Glassmorphism Panel */
/* Glassmorphism Panel */
.glass-panel {
    /* backdrop-filter: blur(35px) saturate(200%); */
    /* -webkit-backdrop-filter: blur(35px) saturate(200%); */
    background: rgba(255, 255, 255, 0.88) !important;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 2rem !important;
    /* Increased rounding */
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 12px 32px -8px rgba(0, 0, 0, 0.08);
    /* Warm subtle shadow */
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.dark .glass-panel {
    background: rgba(20, 30, 50, 0.9) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Liquid Glass Dropdown */
.liquid-glass-dropdown {
    background: rgba(255, 255, 255, 0.96) !important;
    /* Clean white dropdown */
    /* backdrop-filter: blur(30px) saturate(180%) !important; */
    /* -webkit-backdrop-filter: blur(30px) saturate(180%) !important; */
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    border-radius: 2rem !important;
    /* Increased rounding */
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.06),
        0 2px 4px -1px rgba(0, 0, 0, 0.04),
        0 20px 25px -5px rgba(0, 0, 0, 0.08),
        0 8px 10px -6px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    background-clip: padding-box;
}

/* Premium Like Button Animation */
@keyframes heart-burst {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.like-anim {
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.like-anim:active {
    transform: scale(0.9);
}

.like-active {
    animation: heart-burst 0.4s ease-in-out;
    color: #ef4444;
    /* Red-500 */
}

/* Premium Card Gradients */
.meal-card-gradient {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
}

.dark .meal-card-gradient {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

/* Force visible white separators */
.liquid-glass-dropdown .border-b,
.liquid-glass-dropdown .border-t {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.dark .liquid-glass-dropdown {
    background: rgba(30, 30, 34, 0.98) !important;
    /* Solid dark surface */
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.5),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
}

/* Navigation Items */
.nav-item {
    border-radius: 1.2rem;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-item.active {
    background: var(--iosBlue) !important;
    color: white !important;
    box-shadow: 0 8px 25px -6px rgba(0, 122, 255, 0.5) !important;
    border: none !important;
}

.nav-item.active i {
    color: white !important;
}

/* Premium Inputs */
.premium-input {
    background: rgba(255, 255, 255, 0.9) !important;
    /* backdrop-filter: blur(10px); */
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 1rem !important;
    transition: all 0.2s ease;
}

.dark .premium-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.premium-input:focus {
    background: white !important;
    border-color: var(--iosBlue) !important;
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.1) !important;
}

.dark .premium-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* Premium Input Groups (Extended from outpass/complaints) */
.premium-input-group {
    position: relative;
    width: 100%;
}

.premium-input {
    width: 100%;
    padding: 1.25rem 1rem 1.25rem 3rem !important;
    font-size: 0.95rem;
    font-weight: 500;
}

.premium-label {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem;
    font-weight: 600;
    color: #636366;
    pointer-events: none;
    transition: all 0.2s ease;
}

.premium-input:focus~.premium-label,
.premium-input:not(:placeholder-shown)~.premium-label {
    top: 0.7rem;
    font-size: 0.7rem;
    color: var(--iosBlue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.premium-icon {
    position: absolute;
    left: 1.1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #636366;
    transition: color 0.2s ease;
    font-size: 1rem;
}

.premium-input:focus~.premium-icon {
    color: var(--iosBlue);
}

/* Tab Switcher / Pill Design */
.pill-switcher {
    display: flex;
    padding: 0.25rem;
    background: rgba(118, 118, 128, 0.12);
    border-radius: 100px;
    width: fit-content;
}

.dark .pill-switcher {
    background: rgba(255, 255, 255, 0.05);
}

.pill-item {
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 100px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: #636366;
}

.pill-item.active {
    background: white;
    color: black;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.dark .pill-item.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
}

/* Mesh Background */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: -1;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 122, 255, 0.10) 0%, transparent 70%);
    animation: float 12s infinite ease-in-out;
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, 40px);
    }
}

/* Buttons */
.ios-button {
    background: var(--iosBlue);
    color: white;
    border-radius: 1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ios-button:hover {
    background: var(--iosBlue-hover);
    transform: translateY(-1px);
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Visual Feedback States (Skeleton & Loading) */
@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 37%, #e2e8f0 63%);
    background-size: 400% 100%;
    animation: skeleton-loading 1.4s ease infinite;
    border-radius: 0.5rem;
}

.dark .skeleton {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 25%, rgba(255, 255, 255, 0.1) 37%, rgba(255, 255, 255, 0.05) 63%);
    background-size: 400% 100%;
}

/* Skeleton text line placeholder */
.skeleton-text {
    height: 0.875rem;
    border-radius: 0.375rem;
    display: block;
}

.skeleton-text.w-3\/4 {
    width: 75%;
}

.skeleton-text.w-1\/2 {
    width: 50%;
}

.skeleton-text.w-full {
    width: 100%;
}

/* Page Enter Transition */
@keyframes pageEnter {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-enter {
    animation: pageEnter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered children animation */
.stagger-children>* {
    opacity: 0;
    animation: pageEnter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.stagger-children>*:nth-child(1) {
    animation-delay: 0.05s;
}

.stagger-children>*:nth-child(2) {
    animation-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
    animation-delay: 0.15s;
}

.stagger-children>*:nth-child(4) {
    animation-delay: 0.2s;
}

.stagger-children>*:nth-child(5) {
    animation-delay: 0.25s;
}

.stagger-children>*:nth-child(6) {
    animation-delay: 0.3s;
}

/* Disabled Button State */
button:disabled,
.btn-disabled {
    opacity: 0.6;
    cursor: not-allowed !important;
    pointer-events: none;
    filter: grayscale(0.5);
}

/* Loading Spinner for Buttons */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 1.25em;
    height: 1.25em;
    top: 50%;
    left: 50%;
    margin-top: -0.625em;
    margin-left: -0.625em;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
}

/* Empty State Container */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #636366;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Focus Within Enhancements for Forms */
.group:focus-within .premium-label {
    color: var(--iosBlue);
}

/* --- Premium Animations for SweetAlert2 --- */

/* Spring Pop Animation */
@keyframes springPopup {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    40% {
        transform: scale(1.02);
        opacity: 1;
    }

    70% {
        transform: scale(0.98);
    }

    100% {
        transform: scale(1);
    }
}

/* Soft Fade In */
@keyframes softFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Apply to SweetAlert2 Popup - Centered Modals Only */
div:where(.swal2-container.swal2-center) div:where(.swal2-popup):not(.swal2-toast) {
    animation: springPopup 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center center;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Backdrop Blur Transition */
div:where(.swal2-container) {
    transition: backdrop-filter 0.3s ease !important;
    /* Removed default blur that caused toast glitch */
}

/* Only apply blur to CENTERED modals (Popups), not Toasts (Top-End) */
div:where(.swal2-container.swal2-center.swal2-backdrop-show) {
    background: rgba(0, 0, 0, 0.2) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* Explicitly clear backdrop for toasts/other positions */
div:where(.swal2-container:not(.swal2-center)) {
    background: transparent !important;
    backdrop-filter: none !important;
}

/* --- Campus Heatmap UI --- */
.heatmap-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.heatmap-card:hover {
    transform: translateY(-4px) scale(1.02);
}

.heatmap-card.active-filter {
    box-shadow: 0 0 0 2px var(--iosBlue), 0 10px 25px -5px rgba(0, 122, 255, 0.3) !important;
}

/* Status Indicators */
.heat-low {
    /* Green - Available */
    background: linear-gradient(135deg, rgba(52, 199, 89, 0.1), rgba(52, 199, 89, 0.05));
    border-color: rgba(52, 199, 89, 0.2);
}

.heat-low:hover {
    box-shadow: 0 10px 30px -10px rgba(52, 199, 89, 0.3);
    border-color: rgba(52, 199, 89, 0.4);
}

.heat-low .status-dot {
    background-color: #34C759;
    box-shadow: 0 0 10px rgba(52, 199, 89, 0.5);
}

.heat-med {
    /* Orange - Filling */
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.1), rgba(255, 149, 0, 0.05));
    border-color: rgba(255, 149, 0, 0.2);
}

.heat-med:hover {
    box-shadow: 0 10px 30px -10px rgba(255, 149, 0, 0.3);
    border-color: rgba(255, 149, 0, 0.4);
}

.heat-med .status-dot {
    background-color: #FF9500;
    box-shadow: 0 0 10px rgba(255, 149, 0, 0.5);
}

.heat-high {
    /* Red - Full */
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.1), rgba(255, 59, 48, 0.05));
    border-color: rgba(255, 59, 48, 0.2);
}

.heat-high:hover {
    box-shadow: 0 10px 30px -10px rgba(255, 59, 48, 0.3);
    border-color: rgba(255, 59, 48, 0.4);
}

.heat-high .status-dot {
    background-color: #FF3B30;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.5);
}

.heatmap-card .bg-icon {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 4rem;
    opacity: 0.05;
    transform: rotate(-10deg);
    transition: transform 0.4s ease;
}

.heatmap-card:hover .bg-icon {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.1;
}

/* --- Premium Animated Calendar --- */
.calendar-dropdown {
    animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top center;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.calendar-day {
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    height: 32px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #007AFF;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

.calendar-day.selected {
    color: white !important;
}

.calendar-day.selected::after {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(0, 122, 255, 0.3);
}

.calendar-day.today {
    color: #007AFF;
    font-weight: 800;
}

.calendar-day.today::before {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #007AFF;
    border-radius: 50%;
}

.calendar-grid-enter {
    animation: fadeInScale 0.3s ease-out forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.98);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.time-picker-item {
    transition: all 0.2s ease;
}

.time-picker-item.selected {
    background: #007AFF;
    color: white;
}

/* --- Global Custom Scrollbar --- */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.25);
}

.dark ::-webkit-scrollbar-thumb,
html.dark ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
}

.dark ::-webkit-scrollbar-thumb:hover,
html.dark ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (prefers-color-scheme: dark) {
    * {
        scrollbar-color: rgba(255, 255, 255, 0.12) transparent;
    }
}

.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
}

/* --- Premium Animated Toasts --- */
.toast-container {
    pointer-events: none;
    z-index: 10000;
}

.toast-container>* {
    pointer-events: auto;
}

/* Mobile: center toasts at top, full width */
@media (max-width: 639px) {
    .toast-container {
        left: 0 !important;
        right: 0 !important;
        top: 0 !important;
        padding: 0.75rem 0.75rem 0;
        align-items: stretch !important;
    }
}

.toast-item {
    width: 340px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 1.5rem;
    padding: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.85rem;
    position: relative;
    overflow: hidden;
    animation: toastEnter 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dark .toast-item {
    background: rgba(28, 28, 30, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.toast-item.closing {
    animation: toastExit 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Mobile: full-width toasts with slide-down animation */
@media (max-width: 639px) {
    .toast-item {
        width: 100%;
        border-radius: 1.25rem;
        padding: 0.75rem;
        gap: 0.65rem;
        margin-bottom: 0.5rem;
        animation: toastEnterMobile 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .toast-item.closing {
        animation: toastExitMobile 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}

@keyframes toastEnter {
    from {
        opacity: 0;
        transform: translateX(120px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes toastExit {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateX(120px) scale(0.9);
    }
}

/* Mobile-specific animations: slide down from top */
@keyframes toastEnterMobile {
    from {
        opacity: 0;
        transform: translateY(-100%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes toastExitMobile {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    to {
        opacity: 0;
        transform: translateY(-100%) scale(0.95);
    }
}

.toast-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 639px) {
    .toast-icon {
        width: 2.25rem;
        height: 2.25rem;
        border-radius: 0.75rem;
        font-size: 1rem;
    }
}

.toast-content {
    flex: 1;
    min-width: 0;
}

.toast-title {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
    color: #1c1c1e;
}

.dark .toast-title {
    color: #ffffff;
}

.toast-message {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0.7;
    color: #1c1c1e;
}

.dark .toast-message {
    color: #ffffff;
}

@media (max-width: 639px) {
    .toast-title {
        font-size: 0.7rem;
    }

    .toast-message {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Toast Types */
.toast-success .toast-icon {
    background: rgba(52, 199, 89, 0.15);
    color: #34C759;
}

.toast-error .toast-icon {
    background: rgba(255, 59, 48, 0.15);
    color: #FF3B30;
}

.toast-warning .toast-icon {
    background: rgba(255, 149, 0, 0.15);
    color: #FF9500;
}

.toast-info .toast-icon {
    background: rgba(0, 122, 255, 0.15);
    color: #007AFF;
}

.toast-default .toast-icon {
    background: rgba(142, 142, 147, 0.15);
    color: #8E8E93;
}

.toast-progress-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(0, 0, 0, 0.03);
}

.dark .toast-progress-track {
    background: rgba(255, 255, 255, 0.03);
}

.toast-progress-bar {
    height: 100%;
    background: #007AFF;
    transition: width 0.01s linear;
}

.toast-success .toast-progress-bar {
    background: #34C759;
}

.toast-error .toast-progress-bar {
    background: #FF3B30;
}

.toast-warning .toast-progress-bar {
    background: #FF9500;
}

.toast-info .toast-progress-bar {
    background: #007AFF;
}

.toast-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    opacity: 0.3;
    transition: all 0.2s;
}

.toast-close:hover {
    opacity: 1;
    background: rgba(0, 0, 0, 0.05);
}

.dark .toast-close:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* --- Ultra Premium Mess Menu --- */



/* Simple Fade In Up */
.animate-fade-in-up {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}