/* Toast Notification Styling */
.toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.toast {
    padding: 5px 5px;
    margin-bottom: 5px;
    border-radius: 5px;
    font-size: 16px;
    color: white;
    min-width: 250px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    animation: fadeOut 3s ease-in-out forwards;
    font-size: 20px;
}

.toast-success {
    background-color: #04AA6D;
}

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