/* --- TOAST NOTIFICATION --- */
.toast {
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    margin-top: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 300px;
}

.toast.show {
    transform: translateX(0);
}

.toast i {
    width: 20px;
    height: 20px;
}

.toast-content h4 {
    margin: 0;
    font-size: 0.95rem;
}

.toast-content p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}