#toast-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
}

.toast {
    background: #333;
    color: white;
    padding: 12px 20px;
    margin-top: 10px;
    border-radius: 6px;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    font-size: 15px;
    min-width: 200px;
    text-align: center;
}

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

.toast.success {
    background: #28a745;
}

.toast.error {
    background: #dc3545;
}

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

#toast-container .toast.danger {
    background-color: #dc3545;
}

#toast-container .toast.warning {
    background-color: #ffc107;
    color: #333;
}

#toast-container .toast.info {
    background-color: #333;
}
