#toast-container {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.toast {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-radius: 8px;
    outline-offset: -4px;
    outline: 2px solid rgb(0, 0, 0);
    font-size: 0.95rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}


.toast .close-toast-button {
    margin-left: 12px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1rem;
}

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

.toast.show {
    opacity: 1;
}