#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast-message {
    padding: 15px 20px;
    background: #28a745; /* Success Green */
    color: white;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    min-width: 250px;
    transform: translateX(120%);
    transition: transform 0.4s ease-in-out;
}

.toast-message.show {
    transform: translateX(0);
}

/* Success (Default) */
.toast-message.success {
    background-color: #28a745;
}

/* Warning */
.toast-message.warning {
    background-color: #ffc107;
    color: #000; /* Dark text for better readability on yellow */
}

/* Error */
.toast-message.error {
    background-color: #dc3545;
}