
.page-content .container-fluid {
    visibility: hidden;
}

#preloader-blocker {
    position: fixed;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.95);
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--bs-body-font-family, 'Public Sans', sans-serif);
}

#preloader-blocker img {
    width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
}

#preloader-blocker .preloader-text {
    margin-top: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
}
.fade-in-logo {
    width: 100px;
    height: auto;
    opacity: 0;
    animation: fadeInLogo 2s ease-in-out forwards;
}

@keyframes fadeInLogo {
    from { opacity: 0; }
    to { opacity: 1; }
}

.readonly-soft {
    background-color: #f5f6f8 !important; /* gris suave tipo Velzon */
    color: #6c757d !important;           /* texto ligeramente apagado */
}

.readonly-soft::placeholder {
    color: #6c757d !important;
    opacity: 1;
}
