.formulario {
    background-color: #fcfcfc;
    min-height: 80vh;
    padding-bottom: 50px;
}
.ccard {
    background-color: #ffffff;
    border-top: 5px solid #198754 !important; /* Verde corporativo en el tope */
    border-inline: 1px solid #dee2e6 !important;
    border-bottom: 1px solid #dee2e6 !important;
}
.hover-border:hover {
    border-color: #198754 !important;
    box-shadow: 0 0.5rem 1rem rgba(25, 135, 84, 0.15) !important;
    transition: all 0.3s ease-in-out;
}
.progress {
    background-color: #e9ecef;
    border-radius: 50px;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
}
.progress-bar {
    border-radius: 50px;
    font-weight: bold;
}

#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95); /* Fondo casi blanco semi-transparente */
    z-index: 9999; /* Asegura que esté por encima de todo (navbar incluido) */
    display: none; /* Se oculta por defecto */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loading-text {
    animation: fade 1.5s infinite;
}

@keyframes fade {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}