#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background-color: #333;
    color: white;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 10px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    min-width: 250px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    font-family: sans-serif;
}

.toast.show {
    opacity: 1;
}

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

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

.toast-info {
    background-color: #17a2b8;
}
