/* Botón principal de venta/impresión — compartido en Tiempos, Parley, Monazos y Rifas */

.bloque-entrada-venta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.fila-boton-venta-impresion {
    display: flex;
    justify-content: center;
    width: calc(120px + 10px + 120px);
    max-width: 100%;
    margin: 10px 0 0;
}

.fila-boton-venta-impresion--parley {
    width: calc(120px + 10px + 120px + 10px + 120px);
}

.fila-boton-venta-impresion--tiempos-rev {
    width: min(100%, 520px);
}

.fila-boton-venta-impresion.monazos-venta-centro {
    width: 100%;
    max-width: 100%;
}

.btn-venta-impresion {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 200px;
    padding: 12px 22px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #1565c0 0%, #1e88e5 55%, #42a5f5 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(21, 101, 192, 0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-venta-impresion:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(21, 101, 192, 0.45);
    filter: brightness(1.05);
}

.btn-venta-impresion:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.3);
}

.btn-venta-impresion:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-venta-impresion__icon {
    font-size: 1.15em;
    line-height: 1;
}
