 #accionesComprobante{
    display: none;
}
#mensajeResultado {
    display: none;
    margin-top: 7px; 
    font-size: 13px;    
    padding: 6px;      
}
body {#accionesComprobante{
    display: none;
}
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            margin: 0;
            padding: 0;
        }

        /* Contenedor principal centrado */
        .content-wrapper {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100vh;
        }

        /* Tarjeta con sombra y diseño moderno */
        .card {
            padding: 20px 40px 20px 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            background: white;
            text-align: center;
            max-width: 550px;
            width: 90%;
        }

        /* Título */
        .title {
            font-size: 16px;
            font-weight: bold;
            color: #2a5298;
            text-align: center;
            padding-bottom: 14px;
          
        }

        /* Inputs más grandes */
        .form-control {
            border-radius: 10px;
            font-size: 18px;
            padding-left: 10px;
            height: 40px;
            border: 2px solid #ccc;
            transition: all 0.3s ease;
        }

        /* Efecto al hacer foco en inputs */
        .form-control:focus {
            border-color: #2a5298;
            box-shadow: 0 0 8px rgba(42, 82, 152, 0.6);
        }

        /* Iconos en los inputs (más grandes) */
        .input-group-text {
            border-radius: 10px 0 0 10px;
            background-color: transparent;
            color: black;
            font-size: 2rem; /* Tamaño más grande */
            width: 50px;
            display: flex;
            justify-content: center;
            border: 2px solid #ccc;
        }

        /* Botón con efecto y diseño elegante */
        .btn-primary {
            background-color: #2a5298;
            border: none;
            border-radius: 10px;
            font-size: 20px;
            padding: 12px;
            transition: 0.3s;
            font-weight: bold;

        }

        /* Efecto de hover en el botón */
        .btn-primary:hover {
            background-color: #1e3c72;
            transform: scale(1.05);
        }

        /* Botón con efecto y diseño elegante */
        .btn-secondary{
            background-color: grey;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            padding: 12px;
            transition: 0.3s;
            font-weight: bold;

        }

        /* Efecto de hover en el botón */
        .btn-secondary:hover {
            background-color: grey;
            
        }



        .btn-primary2 {
            background-color: #2a5298;
            border: none;
            border-radius: 10px;
            font-size: 14px;
            padding: 12px;
            transition: 0.3s;
            font-weight: bold;
            color:white;
            margin-top: 10px;
        }

        /* Efecto de hover en el botón */
        .btn-primary2:hover {
            background-color: #1e3c72;
            transform: scale(1.05);
            color:white;
        }



        /* Pie de página */
        .footer {
            margin-top: 20px;
            font-size: 16px;
            text-align: center;
            color: white;
            opacity: 0.8;
        }

 .selectCombo {
       margin-top:0px;
       height: 50px;
        font-size: 18px; 
        border-radius: 10px;
         border: 2px solid #ccc;  
         width: 83%;
         padding-left: 5px;
 }
      

   .form-label {
            font-weight: bold;
            color: #2a5298;
            text-align: left; 
            font-size:12px;   
            padding-left: 0PX;    
           }

      .buttons-container {
    display: flex;
    gap: 10px; /* Espaciado entre botones */
 
     justify-content: center;
    align-items: center;
}


.disabled {
   opacity: 0.5; /* Reduce la opacidad para que se vea deshabilitado */
    pointer-events: none; /
}