/**
 * Incyteful VASI PDF Exporter - Estilos
 * Version: 1.0.2
 */

/* Botón de exportar PDF - estilo outline como botón Reiniciar */
.vasi-btn-export-pdf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    background: #ffffff !important;
    color: #E83663 !important;
    border: 2px solid #E83663 !important;
    border-radius: 10px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    font-family: 'Figtree', sans-serif;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.vasi-btn-export-pdf:hover {
    background: #E83663 !important;
    color: #ffffff !important;
    border-color: #E83663 !important;
    opacity: 0.9;
}

.vasi-btn-export-pdf:focus,
.vasi-btn-export-pdf:active {
    background: #E83663 !important;
    color: #ffffff !important;
    border-color: #E83663 !important;
}

.vasi-btn-export-pdf:disabled {
    background: #cccccc !important;
    border-color: #cccccc !important;
    color: #ffffff !important;
    cursor: not-allowed !important;
    opacity: 0.6 !important;
}

.vasi-btn-export-pdf svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

/* Spinner de carga */
.ivpe-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: ivpe-spin 0.6s linear infinite;
}

@keyframes ivpe-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .vasi-btn-export-pdf {
        width: 100%;
        justify-content: center;
        margin-top: 12px;
    }
}