/* Toast Notifications */
#toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    min-width: 300px;
    padding: 15px 20px;
    background: rgba(15, 17, 26, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    font-family: 'Exo 2', sans-serif;
    pointer-events: auto;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    font-size: 1.2rem;
}

.toast.success {
    border-left: 4px solid var(--secondary);
}

.toast.success i {
    color: var(--secondary);
    text-shadow: 0 0 10px var(--secondary);
}

.toast.error {
    border-left: 4px solid var(--accent);
}

.toast.error i {
    color: var(--accent);
}