#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;

    display: flex;
    flex-direction: column;
    gap: 10px;

    z-index: 99999;
    pointer-events: none;
}

.ba-toast {
    min-width: 280px;
    max-width: 400px;

    padding: 14px 16px;

    border-radius: 8px;

    color: white;
    font-size: 14px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    opacity: 0;
    transform: translateY(-10px);

    transition:
        opacity 0.3s ease,
        transform 0.3s ease;

    pointer-events: auto;
}

.ba-toast-show {
    opacity: 1;
    transform: translateY(0);
}

.ba-toast-success {
    background-color: #198754;
}

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

.ba-toast-warning {
    background-color: #ffc107;
    color: #212529;
}

.ba-toast-info {
    background-color: #0dcaf0;
    color: #212529;
}

.ba-toast-close {
    background: none;
    border: none;

    color: inherit;

    cursor: pointer;

    font-size: 18px;
    line-height: 1;

    padding: 0;
}