.efem-toast-container {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 3000;
    display: grid;
    gap: 10px;
    width: min(420px, calc(100vw - 32px));
    transform: translateX(-50%);
    pointer-events: none;
}

.efem-toast {
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18);
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.45;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.18s ease, transform 0.18s ease;
    pointer-events: auto;
}

.efem-toast.is-leaving {
    opacity: 0;
    transform: translateY(-8px);
}

.efem-toast-info {
    background: #2563eb;
}

.efem-toast-success {
    background: #16845f;
}

.efem-toast-warning {
    background: #b45309;
}

.efem-toast-error {
    background: #b91c1c;
}
