body {
    font-family: "Be Vietnam Pro", sans-serif;
}

.glass-nav {
    backdrop-filter: blur(10px);
    background-color: rgba(253, 253, 253, 0.8);
}

.dark .glass-nav {
    background-color: rgba(10, 22, 40, 0.85);
    border-color: rgba(30, 58, 95, 0.3);
}

/* Skeleton Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    animation: shimmer 2s infinite linear;
    background: linear-gradient(to right, #f0f0f0 4%, #e0e0e0 25%, #f0f0f0 36%);
    background-size: 1000px 100%;
}

.dark .skeleton {
    background: linear-gradient(to right, #152238 4%, #1e3a5f 25%, #152238 36%);
    background-size: 1000px 100%;
}

/* Toast Notifications */
#toast-container {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    pointer-events: none;
    width: 100%;
    max-width: 400px;
    padding: 0 1rem;
}

.toast {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    color: #1a1a1a;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    pointer-events: auto;
    animation: toast-in 0.3s ease-out forwards;
    transition: all 0.3s ease;
}

.dark .toast {
    background: rgba(21, 34, 56, 0.95);
    border-color: rgba(30, 58, 95, 0.4);
    color: #e8f4f8;
}

.toast.error {
    border-left: 4px solid #ef4444;
}

.toast.success {
    border-left: 4px solid #10b981;
}

.toast.toast-out {
    animation: toast-out 0.3s ease-in forwards;
}

@keyframes toast-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes toast-out {
    from {
        opacity: 1;
        transform: scale(1);
    }

    to {
        opacity: 0;
        transform: scale(0.95);
    }
}