/* Estilos para el indicador de carga de PDF */

.pdf-loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    color: white;
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.pdf-loading-indicator p {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.pdf-loading-indicator .spinner-border {
    width: 4rem;
    height: 4rem;
    border-width: 0.3em;
    box-shadow: 0 0 15px rgba(255, 107, 0, 0.5);
}

.pdf-progress {
    width: 300px;
    height: 10px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    overflow: hidden;
    margin-top: 10px;
}

.pdf-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff6b00, #c06e2d);
    border-radius: 5px;
    transition: width 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}