.bs--toast-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 9999;
    pointer-events: none;
}

.bs--toast {
    padding: 12px 20px;
    border-radius: 6px;
    color: white;
    font-size: 14px;
    width: auto;
    max-width: 500px;
    text-align: center;
    pointer-events: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px, rgba(0, 0, 0, 0.07) 0px 2px 2px, rgba(0, 0, 0, 0.07) 0px 4px 4px, rgba(0, 0, 0, 0.07) 0px 8px 8px, rgba(0, 0, 0, 0.07) 0px 16px 16px;
    transition: 200ms;
    align-self: center;
    width: auto;
}

.bs--toast.s {
    background: #096549;
}
.bs--toast.e {
    background: #dc192c;
}
.bs--toast.i {
    background: #000000e3;
}
.bs--toast.p {
    background: #ffc107;
    color: #333;
}
.bs--toast.d {
    background: #007bff;
}
