/* Toast container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Toast box */
.toast {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 250px;
    max-width: 300px;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    transform: translateX(120%);
    opacity: 0;
    animation: slideIn 0.5s forwards, fadeOut 0.5s 3.5s forwards;
}

/* Toast types */
.toast.success {
    background: linear-gradient(45deg, #00b09b, #96c93d);
}

.toast.error {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
}

.toast.info {
    background: linear-gradient(45deg, #2193b0, #6dd5ed);
}

.toast.warning {
    background: linear-gradient(45deg, #f7971e, #ffd200);
}

/* Icon inside toast */
.toast i {
    font-size: 18px;
}

/* Animation */
@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(120%);
    }
}
