.toast-container {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999999;
    display: grid;
    gap: 10px;
    width: min(380px, calc(100vw - 32px));
}

.toast-message {
    padding: 13px 16px;
    border-radius: 4px;
    color: #fff;
    background: #164e63;
    box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
    font-size: 14px;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease;
}

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

.toast-success {
    background: #2e7d52;
}

.toast-error {
    background: #b84242;
}

.toast-warning {
    background: #b7791f;
}

.toast-info {
    background: #164e63;
}
