/* Toast Container */
#toast-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* Toast Styles */
.toast {
    background-color: #fff;
    color: #333;
    padding: 16px 24px;
    border: 1px solid #E7EAEC;
    border-radius: 8px;
    font-size: 16px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(100%);
    animation: slideIn 0.2s ease-out forwards, fadeOut 0.5s ease-in forwards 2.5s;
}

/* Toast Icon */
.toast-icon {
    font-size: 20px;
    margin-right: 12px;
}

.toast-icon.success {
    color: #28a745;
}

.toast-icon.info {
    color: #007bff;
}

/* Keyframe animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}