/* ============================================================
   not-authorized.css  –  Página de acceso denegado
   Prefijo: na-*  (o agrega estas reglas en tu masterdata.css)
   ============================================================ */

.not-authorized-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    gap: 2rem;
    padding: 2rem 1rem;
    box-sizing: border-box;
}

.not-authorized-svg {
    height: 50vh;
    max-height: 420px;
    width: auto;
    aspect-ratio: 16 / 9;
}

.not-authorized-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    max-width: 480px;
}

.not-authorized-text h1 {
    font-size: 1.875rem;   /* ~30px */
    font-weight: 500;
    margin: 0;
    color: #263238;
}

.not-authorized-text p {
    font-size: 1.125rem;   /* ~18px */
    margin: 0;
    color: #4b5563;
}

.not-authorized-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.6rem 1.6rem;
    background-color: #3B82F6;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background-color 0.2s ease;
}

.not-authorized-btn:hover {
    background-color: #2563eb;
}

/* ── Responsive ── */
@media (max-width: 480px) {
    .not-authorized-svg {
        height: 35vh;
    }

    .not-authorized-text h1 {
        font-size: 1.375rem;
    }

    .not-authorized-text p {
        font-size: 1rem;
    }
}
