/* ================================================
   VERIFICADOR DE CÓDIGO DE BARRAS - ESTILOS PROFESIONALES
   ================================================ */

/* Variables CSS específicas para verificador (sin sobrescribir :root global) */
.verificador-container {
    --verificador-primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --verificador-secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --verificador-success-gradient: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    --verificador-error-gradient: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    --verificador-neutral-gradient: linear-gradient(135deg, #f5f7fa 0%, #e4e9f2 100%);
    --verificador-light-secondary-gradient: linear-gradient(135deg, #a8b2c1 0%, #8b95a5 100%);
    
    --verificador-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --verificador-shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --verificador-shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --verificador-shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.15);
    
    --verificador-transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --verificador-transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    --verificador-border-radius-sm: 8px;
    --verificador-border-radius-md: 12px;
    --verificador-border-radius-lg: 16px;
    --verificador-border-radius-xl: 20px;
}

/* Contenedor Principal */
.verificador-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 1rem;
    animation: fadeInContainer 0.6s ease-out;
}

@keyframes fadeInContainer {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header ESPECÍFICO del Verificador - NO afecta a otras páginas */
.verificador-header {
    margin-bottom: 2.5rem;
    padding: 2.5rem 3rem;
    background: var(--verificador-primary-gradient);
    border-radius: var(--verificador-border-radius-xl);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.verificador-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundSlide 25s linear infinite;
}

.verificador-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes backgroundSlide {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.verificador-header h2,
.verificador-header h3 {
    color: #ffffff;
    font-weight: 800;
    font-size: 2.75rem;
    margin-bottom: 0.75rem;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.6s ease-out;
}

.verificador-header .oi {
    display: inline-block;
    animation: rotateIcon 0.8s ease-out;
}

@keyframes rotateIcon {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    to {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.verificador-header p {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contenedor de Contenido */
.verificador-content {
    animation: fadeIn 0.8s ease-out 0.3s both;
}

/* Tarjetas de Escaneo - Diseño Premium */
.scanner-card {
    background: white;
    border-radius: var(--verificador-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--verificador-shadow-md);
    transition: var(--verificador-transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

.scanner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--verificador-primary-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.scanner-card:hover {
    box-shadow: var(--verificador-shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.2);
}

.scanner-card:hover::before {
    transform: scaleX(1);
}

.primera-lectura.scanner-card::before {
    background: var(--verificador-primary-gradient);
}

.segunda-lectura.scanner-card::before {
    background: var(--verificador-secondary-gradient);
}

/* Header de las Tarjetas - Mejorado */
.card-header-custom {
    background: var(--verificador-primary-gradient);
    color: white;
    padding: 1.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.card-header-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.scanner-card:hover .card-header-custom::before {
    left: 100%;
}

.card-header-custom .header-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    transition: var(--verificador-transition-bounce);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scanner-card:hover .card-header-custom .header-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.35);
}

.card-header-custom .header-icon .oi {
    font-size: 26px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.card-header-custom h5 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 700;
    flex: 1;
    letter-spacing: -0.3px;
}

.card-header-custom .badge-number {
    background: rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    font-weight: 800;
    border: 3px solid rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--verificador-transition-bounce);
}

.scanner-card:hover .card-header-custom .badge-number {
    transform: scale(1.15);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Estilos específicos para cada tarjeta */
.primera-lectura .card-header-custom {
    background: var(--verificador-primary-gradient);
}

.segunda-lectura .card-header-custom {
    background: var(--verificador-secondary-gradient);
}

/* Cuerpo de la Tarjeta */
.card-body-custom {
    padding: 2.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfc 100%);
}

.card-body-custom .form-label {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    letter-spacing: -0.2px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-body-custom .form-label::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--verificador-primary-gradient);
    border-radius: 2px;
    animation: pulseBar 2s ease-in-out infinite;
}

@keyframes pulseBar {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.6; transform: scaleY(0.8); }
}

/* Preview del Código - Mejorado */
.codigo-preview {
    background: var(--verificador-neutral-gradient);
    border-radius: var(--verificador-border-radius-md);
    padding: 1.5rem;
    margin-top: 1.25rem;
    border-left: 5px solid #667eea;
    box-shadow: var(--verificador-shadow-sm);
    position: relative;
    overflow: hidden;
    animation: slideInFromRight 0.5s ease-out;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.codigo-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.codigo-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    color: #495057;
    font-weight: 600;
}

.codigo-header .oi {
    color: #667eea;
    font-size: 1.1rem;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.codigo-text {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a252f;
    padding: 1rem 1.25rem;
    background: white;
    border-radius: var(--verificador-border-radius-sm);
    word-break: break-all;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(102, 126, 234, 0.1);
    transition: var(--verificador-transition-smooth);
    position: relative;
    z-index: 1;
}

.codigo-text:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.codigo-info {
    margin-top: 0.85rem;
    position: relative;
    z-index: 1;
}

.codigo-info .badge {
    font-weight: 600;
    padding: 0.5rem 0.85rem;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: var(--verificador-shadow-sm);
}

/* Botones de Acción - Mejorados */
.action-buttons {
    margin-top: 2.5rem;
}

.action-buttons .dxbl-btn {
    position: relative;
    overflow: hidden;
}

.action-buttons .dxbl-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.action-buttons .dxbl-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Resultados - Diseño Premium */
.resultado-container {
    margin-top: 2.5rem;
    animation: zoomIn 0.5s ease-out;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.resultado_card {
    @apply bg-white rounded-lg p-10 shadow-xl flex gap-10 relative overflow-hidden border;
    animation: fadeInUp 0.7s ease-out;
}

.resultado_card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    z-index: 0;
    border-radius: inherit;
    pointer-events: none;
}

.resultado-icon {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
    animation: scaleIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.resultado-exitoso .resultado-icon {
    background: var(--verificador-success-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
}

.resultado-exitoso .resultado-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.3);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    75%, 100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.resultado-error .resultado-icon {
    background: var(--verificador-error-gradient);
    color: white;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
}

.resultado-error .resultado-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.3);
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-10px); }
    75% { transform: translateX(10px); }
}

.resultado-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.resultado-titulo {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #1a252f;
    letter-spacing: -0.5px;
    animation: fadeInDown 0.5s ease-out 0.2s both;
}

.resultado-descripcion {
    color: #6c757d;
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
    font-weight: 500;
    animation: fadeInUp 0.5s ease-out 0.3s both;
}

.resultado-detalles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.detalle-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--verificador-neutral-gradient);
    border-radius: var(--verificador-border-radius-sm);
    font-size: 1.05rem;
    transition: var(--verificador-transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: slideInLeft 0.5s ease-out backwards;
}

.detalle-item:nth-child(1) { animation-delay: 0.4s; }
.detalle-item:nth-child(2) { animation-delay: 0.5s; }
.detalle-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.detalle-item:hover {
    background: linear-gradient(135deg, #e8eaf6 0%, #dce3f2 100%);
    transform: translateX(8px);
    box-shadow: var(--verificador-shadow-sm);
}

.detalle-item .oi {
    color: #667eea;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.comparacion-detalle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.codigo-comparacion {
    background: var(--verificador-neutral-gradient);
    padding: 1.25rem;
    border-radius: var(--verificador-border-radius-md);
    border: 3px solid #dee2e6;
    transition: var(--verificador-transition-smooth);
    position: relative;
    overflow: hidden;
}

.codigo-comparacion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: var(--verificador-transition-smooth);
}

.codigo-comparacion.primera {
    border-color: #667eea;
}

.codigo-comparacion.primera::before {
    background: var(--verificador-primary-gradient);
}

.codigo-comparacion.segunda {
    border-color: #f5576c;
}

.codigo-comparacion.segunda::before {
    background: var(--verificador-secondary-gradient);
}

.codigo-comparacion:hover {
    transform: translateY(-4px);
    box-shadow: var(--verificador-shadow-md);
}

.badge-label {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.codigo-valor {
    font-family: 'Courier New', Consolas, Monaco, monospace;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.85rem 1rem;
    background: white;
    border-radius: var(--verificador-border-radius-sm);
    margin-bottom: 0.75rem;
    word-break: break-all;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(0, 0, 0, 0.05);
}

.diferencias-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
    border-left: 5px solid #ffc107;
    border-radius: var(--verificador-border-radius-sm);
    box-shadow: var(--verificador-shadow-sm);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.diferencias-info .oi {
    color: #ffc107;
    font-size: 1.75rem;
    flex-shrink: 0;
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Historial - Diseño Premium */
.historial-container {
    background: white;
    border-radius: var(--verificador-border-radius-lg);
    padding: 2rem;
    box-shadow: var(--verificador-shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.historial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 3px solid #e9ecef;
}

.historial-header h5 {
    margin: 0;
    color: #1a252f;
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.historial-lista {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.historial-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: var(--verificador-border-radius-md);
    background: var(--verificador-neutral-gradient);
    transition: var(--verificador-transition-smooth);
    border: 2px solid transparent;
    cursor: pointer;
}

.historial-item:hover {
    background: linear-gradient(135deg, #e8eaf6 0%, #dce3f2 100%);
    transform: translateX(8px);
    box-shadow: var(--verificador-shadow-sm);
}

.historial-item.coincide {
    border-left: 5px solid #28a745;
}

.historial-item.coincide:hover {
    border-color: #28a745;
    background: linear-gradient(135deg, #e8f5e9 0%, #d4edda 100%);
}

.historial-item.no-coincide {
    border-left: 5px solid #dc3545;
}

.historial-item.no-coincide:hover {
    border-color: #dc3545;
    background: linear-gradient(135deg, #ffe8e8 0%, #f8d7da 100%);
}

.historial-icono {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--verificador-shadow-sm);
    transition: var(--verificador-transition-bounce);
}

.historial-item:hover .historial-icono {
    transform: scale(1.15) rotate(5deg);
}

.historial-item.coincide .historial-icono {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #28a745;
}

.historial-item.no-coincide .historial-icono {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #dc3545;
}

.historial-info {
    flex: 1;
    min-width: 0;
}

.historial-fecha {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.historial-codigos {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.historial-codigos small {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.historial-estado {
    flex-shrink: 0;
}

.historial-estado .badge {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: var(--verificador-shadow-sm);
}

/* Animaciones Globales */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out;
}

.animate-slide-in {
    animation: slideIn 0.6s ease-out;
}

/* DevExpress Overrides - SCOPED SOLO AL VERIFICADOR */

/* TextBox - SOLO en verificador */
.verificador-container .dxbl-textbox {
    border-radius: var(--verificador-border-radius-sm) !important;
    border: 2px solid #e0e6ed !important;
    transition: var(--verificador-transition-smooth) !important;
    font-size: 1.05rem !important;
}

.verificador-container .dxbl-textbox:focus,
.verificador-container .dxbl-textbox:focus-within {
    border-color: #667eea !important;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1) !important;
    transform: translateY(-2px);
}

/* Botones Base - SOLO en verificador */
.verificador-container .dxbl-btn {
    border-radius: var(--verificador-border-radius-sm) !important;
    font-weight: 600 !important;
    transition: var(--verificador-transition-smooth) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--verificador-shadow-sm) !important;
}

.verificador-container .dxbl-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--verificador-shadow-md) !important;
}

.verificador-container .dxbl-btn:active {
    transform: translateY(0) !important;
}

.verificador-container .dxbl-btn-lg {
    padding: 1rem 2rem !important;
    font-size: 1.15rem !important;
}

/* Botón Primary - SOLO en verificador */
.verificador-container .dxbl-btn-primary {
    background: var(--verificador-primary-gradient) !important;
    border: none !important;
}

/* Botón Secondary - SOLO en verificador */
.verificador-container .dxbl-btn-secondary {
    background: var(--verificador-light-secondary-gradient) !important;
    border: none !important;
    color: white !important;
}

.verificador-container .dxbl-btn-secondary:hover {
    background: linear-gradient(135deg, #8b95a5 0%, #6c757d 100%) !important;
}

/* Botón Danger - SOLO en verificador */
.verificador-container .dxbl-btn-danger {
    background: var(--verificador-error-gradient) !important;
    border: none !important;
}

/* Estilos mejorados para botones Light - SOLO en verificador */
.verificador-container .dxbl-btn-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%) !important;
    border: 2px solid #dee2e6 !important;
    color: #495057 !important;
    font-weight: 600 !important;
}

.verificador-container .dxbl-btn-light:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%) !important;
    border-color: #adb5bd !important;
    color: #212529 !important;
}

.verificador-container .dxbl-btn-light:active {
    background: linear-gradient(135deg, #dee2e6 0%, #ced4da 100%) !important;
    border-color: #6c757d !important;
}

.verificador-container .dxbl-btn-light:disabled {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f5 100%) !important;
    border-color: #e9ecef !important;
    color: #adb5bd !important;
    opacity: 0.6;
}

/* Botones en las tarjetas de escaneo - SOLO en verificador */
.verificador-container .card-body-custom .dxbl-btn-light {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.verificador-container .card-body-custom .dxbl-btn-light:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
    transform: translateY(-2px) !important;
}

/* Botones de acción grandes - SOLO en verificador */
.verificador-container .action-buttons .dxbl-btn-light {
    background: linear-gradient(135deg, #ffffff 0%, #f1f3f5 100%) !important;
    border: 2px solid #adb5bd !important;
    color: #495057 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.verificador-container .action-buttons .dxbl-btn-light:hover {
    background: linear-gradient(135deg, #f1f3f5 0%, #e2e6ea 100%) !important;
    border-color: #6c757d !important;
    color: #212529 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15) !important;
}

/* Efecto de ondulación en botones - SOLO en verificador */
.verificador-container .action-buttons .dxbl-btn {
    position: relative;
    overflow: hidden;
}

.verificador-container .action-buttons .dxbl-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.verificador-container .action-buttons .dxbl-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Responsive para botones Light - SOLO en verificador */
