﻿.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background-color: white;
    color: black;
    border-left: 4px solid #EFDBB2;
}

    .toast.show {
        opacity: 1;
        transform: translateX(0);
    }

    .toast:not(.show) {
        opacity: 0;
        transform: translateX(100%);
    }

.toast-success {
    border-left-color: #EFDBB2;
}

.toast-error {
    border-left-color: black;
}

.toast-warning {
    border-left-color: #EFDBB2;
}

.toast-info {
    border-left-color: #EFDBB2;
}

.toast-success .toast-header {
    background-color: #EFDBB2;
    color: black;
}

.toast-error .toast-header {
    background-color: black;
    color: white;
}

.toast-warning .toast-header {
    background-color: #EFDBB2;
    color: black;
}

.toast-info .toast-header {
    background-color: #EFDBB2;
    color: black;
}

.toast-icon {
    margin-right: 8px;
    font-weight: bold;
    font-size: 1.1em;
}

@media (max-width: 576px) {
    .toast-container {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}
