.app-toast-container {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 200000;
    display: flex;
    flex-direction: column;
    gap: 9px;
    pointer-events: none;
}

.app-toast {
    display: grid;
    width: 100%;
    grid-template-columns:
        34px
        minmax(0, 1fr)
        34px;
    gap: 10px;
    align-items: start;
    padding: 12px;
    border: 1px solid #e4e7ec;
    border-left-width: 5px;
    border-radius: 11px;
    background: #fff;
    box-shadow:
        0 16px 45px
        rgba(15, 23, 42, 0.22);
    opacity: 0;
    transform: translateY(8px);
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
    pointer-events: auto;
}

.app-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.app-toast-success {
    border-left-color: #16a34a;
}

.app-toast-error {
    border-left-color: #dc2626;
}

.app-toast-warning {
    border-left-color: #f59e0b;
}

.app-toast-info {
    border-left-color: #2563eb;
}

.app-toast-icon {
    display: flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f2f4f7;
    font-weight: 900;
}

.app-toast-success .app-toast-icon {
    background: #dcfce7;
    color: #166534;
}

.app-toast-error .app-toast-icon {
    background: #fee2e2;
    color: #991b1b;
}

.app-toast-warning .app-toast-icon {
    background: #fef3c7;
    color: #92400e;
}

.app-toast-info .app-toast-icon {
    background: #dbeafe;
    color: #1d4ed8;
}

.app-toast-content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    color: #344054;
    font-size: 13px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.app-toast-content strong {
    margin-bottom: 2px;
    color: #101828;
}

.app-toast-close {
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #667085;
    font-size: 23px;
    cursor: pointer;
}

@media (min-width: 650px) {
    .app-toast-container {
        top: 18px;
        right: 18px;
        bottom: auto;
        left: auto;
        width: min(
            390px,
            calc(100vw - 36px)
        );
    }
}