/* Toast Container */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Individual Toast */
.toast {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    min-width: 250px;
    max-width: 350px;
    color: #fff;
    background-color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast__icon {
    margin-right: 12px;
    font-size: 1.2rem;
}

.toast__message {
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Toast Types */
.toast--success {
    background-color: #28a745;
}

.toast--error {
    background-color: #dc3545;
}

.toast--info {
    background-color: #17a2b8; /* Màu xanh dương cho thông tin */
}

.toast--warning {
    background-color: #ffc107; /* Màu vàng cho cảnh báo */
    color: #212529;
}
