/**
 * R@DI / Qualyta — notificações toast globais (substitui alert() nativo).
 */
.radi-notify-stack {
    position: fixed;
    top: 72px;
    right: 24px;
    z-index: 10060;
    width: min(380px, calc(100vw - 32px));
    pointer-events: none;
}

.radi-notify-item {
    pointer-events: auto;
    margin: 0 0 12px;
    padding: 14px 38px 14px 16px;
    border-radius: 8px;
    border: 1px solid transparent;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
    font-size: 13px;
    line-height: 1.45;
    animation: radiNotifyIn 0.35s ease;
    position: relative;
}

.radi-notify-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 14px;
    font-weight: 600;
}

.radi-notify-item .close {
    position: absolute;
    top: 8px;
    right: 10px;
    opacity: 0.55;
}

.radi-notify-item .radi-notify-msg {
    display: block;
}

.radi-notify-success {
    background: #e8f7ee;
    color: #1b5e36;
    border-color: #b8e6c8;
}

.radi-notify-success strong {
    color: #157a3a;
}

.radi-notify-error {
    background: #fdecea;
    color: #8a1f17;
    border-color: #f5c6c2;
}

.radi-notify-error strong {
    color: #c62828;
}

.radi-notify-warning {
    background: #fff8e6;
    color: #7a5a00;
    border-color: #ffe08a;
}

.radi-notify-warning strong {
    color: #b7791f;
}

.radi-notify-info {
    background: #e8f4fd;
    color: #1a4d73;
    border-color: #b8daf5;
}

.radi-notify-info strong {
    color: #2563a8;
}

@keyframes radiNotifyIn {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.radi-notify-inline .alert {
    margin-bottom: 14px;
    border-radius: 6px;
    font-size: 13px;
}
