﻿.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.toast {
    padding: 10px;
    border-radius: 5px;
    color: white;
    margin-bottom: 10px;
    width: 300px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toast-success {
    background-color: #28a745;
}

.toast-warning {
    background-color: #ffc107;
}

.toast-error {
    background-color: #dc3545;
}

button {
    background: none;
    border: none;
    color: white;
    font-weight: bold;
    cursor: pointer;
}
