.contenedor-principal {
    display: flex; 
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 100px;  
}

.active {
    display: none;
}
.btn-navbar {
background-color: #ffffff;
/* Color de fondo claro */
color: #000000;
/* Color de texto */
border: 1px solid #cccccc;
/* Borde gris claro */
transition: background-color 0.3s ease, color 0.3s ease;
/* Transición suave */
}

.btn-navbar:hover,
.btn-navbar:active,
.btn-navbar:focus {
background-color: #f1f1f1; /* Fondo gris claro al pasar el ratón y al hacer clic */
color: #333333; /* Color de texto un poco más oscuro */
border-color: #bbbbbb; /* Borde un poco más oscuro en hover y active */
outline: none; /* Elimina el borde de enfoque azul */
}

.disabled-input {
background-color: #e0e0e0; /* Gris claro */
cursor: not-allowed;
}

.form-container {
display: grid;
grid-template-columns: 1fr 1fr; /* Dos columnas de igual tamaño */
gap: 10px; /* Espacio entre columnas */
align-items: start; /* Alinea los elementos al inicio */
}

.form-group {
display: flex;
flex-direction: column; /* Coloca el título encima del input */
}

.form-group label {
font-weight: bold; /* Estilo para el título */
margin-bottom: 5px; /* Espacio entre el título y el input */
}
.toggle-button {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #235b4e;
color: white;
padding: 10px 16px;
border-radius: 6px;
cursor: pointer;
width: 100%;
font-size: 16px;
font-weight: 500;
transition: background-color 0.3s ease;
border: none;
height: 50px;
line-height: 1;
}

.toggle-button:hover {
background-color: #235b4e;
}

.toggle-arrow {
transition: transform 0.3s ease;
width: 18px;
height: 18px;
}

.toggle-arrow.open {
transform: rotate(180deg); 
}

.flex-row-general {
    display: flex; 
    flex-direction: row;
    gap: 20px;
}
.flex-row-general-item {
    display: flex; 
    flex-wrap: nowrap; 
    flex-direction: row;
    gap: 5px;
}

.flex-column-general {
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}

.accordion-content {
padding: 16px;
background-color: #f9f9f9;
border-left: 4px solid #235b4e;
border-radius: 6px;
margin-top: 10px;
}
.detalle-pedimento {
display: flex;
justify-content: space-between;
gap: 40px;
margin-bottom: 20px;
font-size: 15px;
color: #374151; /* gris oscuro */
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.detalle-pedimento .columna {
width: 45%;
}

.detalle-pedimento p {
margin: 6px 0;
}

.table-head {
background-color: #235b4e;
}

th, td {
padding: 10px !important;
}

.input-sombreado-redondeado {
box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
border-radius: 8px;
}
/* Estilo básico del modal */
.modal {
display: none; 
position: fixed; 
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.7); 
justify-content: center;
align-items: center;
transition: opacity 0.3s ease; 
}

.modal-dialog {
border-radius: 5px;
padding: 20px;
max-width: 500px;
width: 100%;
position: relative; 
}

.modal-header {
display: flex;
justify-content: space-between;
align-items: center;
justify-content: center;
}

.modal-title {
color: #9F2241;
font-size: 24px;
}

.close {
font-size: 1.5em;
cursor: pointer;
}

/* Pie del modal */
.modal-footer {
display: flex;
justify-content: flex-end;
padding-top: 10px;
}

.modal-body {
display: flex; 
justify-content: center;
}
.btn-icon {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    transition: transform 0.2s;
}
.btn-icon:hover {
transform: scale(1.1);
}

.container {
max-width: 1500px;
}

.accordion-section {
width: 100%;
}

/* @media (max-width: 768px) {
    .toggle-button {
    width: 95%;
    margin: 0 auto 10px;
    }

    .accordion-content {
    padding: 10px;
    }
}
@media (max-width: 767px) {
    .table-responsive table {
        min-width: 100%;
    }

    .table-responsive thead {
        display: none;
    }

    .table-responsive tr {
        display: block;
        margin-bottom: 15px;
        border: 1px solid #ddd;
    }

    .table-responsive td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right;
        padding-left: 50% !important;
        position: relative;
        border-bottom: 1px solid #eee;
    }

    .table-responsive td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        font-weight: bold;
        text-align: left;
        color: #235b4e;
    }

    .table-responsive td[style*="background-color: #e8fff3"]::before {
        color: #000;
    }
} */
.contenedor-consulta {
    overflow: visible;
    transition: all 0.3s ease;
    height: auto;
    width: 100%; 
    max-width: 1200px;
}

#conten {
    display: flex; 
    flex-direction: row; 
    gap: 20px;
}
.titulo-consulta {
    width: 100%; 
}

.capturarLC {
    display: flex; 
    flex-direction: row;
    justify-content:left ; 
    align-items: center;
    gap: 10px; 
    width: 50%;

    label {
        width: 200px;
    }

    input { 
        width: 200px;
        text-align: center;
    }
}

/* @media (min-width: 1400px) {
    .contenedor-consulta {
        max-width: 1400px;
    }
} */

.titulo-consultas {
    width: 100%; 
}

.bg-anam-green {
    background-color: #235b4e !important;
}

.w-100px { width: 100px !important; }
.w-400px { width: 400px !important; }
.h-70px { height: 70px !important; }
.width-55 {
    width: 55%;
}


.text-dark-green {
    color: rgb(15, 66, 48);
}
.text-error {
color: #9F2241;
}
    
.accordion-content.hidden {
    display: none;
}

.accordion-content.active {
    display: block;
}

#myModal {
    font-size: 12px;
    position: relative;
    z-index: 100;
}

/* Nota sobre Línea de captura */
#text-generar-pdf {
    color: #235b4e;
    font-size: 14px;
    font-weight: bold;
    display: none;
    justify-content: center;
    align-self: center;
}
#descargarpdf-lineacaptura .d-flex {
    height: 70px;
    margin-top: 20px;
}

#descargarpdf-lineacaptura h3 {
    color: rgb(15, 66, 48);
}

.descargar-btn {
    background-color: transparent;
    border: none;
    width: 100px;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    cursor: pointer;
}

.descargar-pdf {
    display: flex; 
    flex-direction: row;
    align-items: center;
    gap: 10px; 
}

.seccion-descarga { 
    display: flex; 
    flex-direction: row; 
    justify-content: space-between; 
}

.descargar-btn:hover {
    background-color: #38a169; 
    color: white;
}

.icono-pdf {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.tabla-linea-captura {
    font-size: 12px;
}

.estado-pago {
    text-align: center;
    font-weight: 500;
}

.estado-pago.confirmado {
    background-color: #e8fff3;
}

.estado-pago.rechazado {
    background-color: #9F2241;
    color: #ffffff !important;
}

.text-center {
    text-align: center;
}

.activo {
    display: block;
}

.oculto {
    display: none;
}
.oculto-vin {
    display: none !important;
}
.visible-vin {
    display: flex;
}

.oculto-vin-tabla-vehicular {
    display: none !important;
}
.visible-vin-tabla-vehicular {
    display: block;
}
.tabla-scroll-responsive {
    overflow-x: unset;
}
.header-consulta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.titulo-consulta {
    color: #1b8118;
}

.tabla-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.tabla-contenedor {
    min-width: 800px;
}

.thead-contenedor th {
    background-color: #235b4e;
    color: white;
    padding: 10px;
    text-align: center;
}

.celda-centro {
    padding: 10px;
    text-align: center;
}

.celda-autorizacion {
    background-color: #e8fff3;
    color: black;
    padding: 10px;
    text-align: center;
}

.celda-pago {
    background-color: #e8fff3;
    color: black;
    padding: 10px;
    text-align: center;
}

.celda-pago img {
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.informacion-pago {
    display: none;
}

.tabla-pago {
    min-width: 900px;
}
.detalle-desglosado {
    display: none;
}

.titulo-detalle {
    color: #9F2241;
    font-weight: bold;
    font-size: 1.2rem;
}
.vehiculo-subtitle {
    color: #235b4e;
    font-size: 14px; 
}
.margen-izquierdo {
    margin-left: 20px;
}

.thead-pedimento {
    background-color: #235b4e;
    color: white;
}

.tabla-consulta-vin {
    font-size: 12px;
}

.columna-pedimento,
.columna-banco,
.columna-secuencia,
.columna-factura,
.columna-info-pago {
    width: 150px;
}

.celda-clickable {
    background-color: #e8fff3  !important;
    cursor: pointer;
}

.icono-eye {
    width: 15px;
    height: 15px;
    cursor: pointer;
}
.tabla-pedimentos {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.text-uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}
.icono-exclamacion {
    width: 30px;
    height: 30px;
}
.contendor-datos-vin {
    flex-direction: row; 
    align-items: end;
}

.input-vin {
    text-transform: uppercase;
    width: 340px;
}
.input-vin-aduana {
    width: 380px;
    background-color: #f0f0f0;
    text-transform: uppercase;
    pointer-events: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
}

.input-vin-autorizacion,
.input-vin-pedimento {
    width: 80px;
    text-align: center;
    background-color: #f0f0f0;
    pointer-events: none;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    border: 1px solid #d1d5db;
}

.titulo-movimiento {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;   /* font-semibold */
    color: #1b8118;
    margin-bottom: 0;
}

.subtitulo-movimiento {
    font-size: 1.25rem;
    font-weight: 600;
    color: gray;
    margin-bottom: 0;
}

.tabla-movimientos {
    font-size: 12px;
}
.tabla-pagos {
    display: none;
    flex-direction: column;
}



.titulo-pagos {
    font-size: 1.25rem; /* text-xl */
    font-weight: 600;   /* font-semibold */
    color: #1b8118;
    margin-bottom: 0;
}

.subtitulo-pagos {
    font-size: 1.25rem;
    font-weight: 600;
    color: gray;
    margin-bottom: 0;
}

.tabla-pagos-detalle {
    font-size: 12px;
}

.tabla-vehicular-container {
    display: flex;
    flex-direction: row;
    gap: 40px;
    width: 100%;
}

.vehiculo-columna.imp-exp {
    width: 60%;
}

.vehiculo-subseccion {
    display: flex; 
    flex-direction: row;
    justify-content: space-between; 
    gap: 20px; 
}
.vehiculo-bloque {
    display: flex; 
    flex-direction: column;
    gap: 15px; 
}

.tabla-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    margin-top: 1rem;
    margin-bottom: 1rem;

    .total-registros, .titulo-tabla {
        flex: 1; 
    }
}

.vehiculos-titulo {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1b8118;
    margin-bottom: 0;
}

.vehiculos-subtitulo {
    font-size: 1.25rem;
    font-weight: 600;
    color: gray;
    margin-bottom: 0;
}

.tabla-vehiculos {
    font-size: 12px;
}

.icono-detalle {
    background-color: #e8fff3;
    text-align: center;
}

.icono-pequeno {
    width: 15px;
    height: 15px;
    cursor: pointer;
}


#noteFile,
#noteText {
    width: auto;
}

.text-generar-pdf {
    color: #235b4e;
    font-size: 14px;
    font-weight: bold;
    display: none;
}

.card-descarga {
    height: 70px;
    margin-top: 20px;
}

#download-btn {
    background-color: transparent;
    border: none;
    width: 100px;
}

#descargarpdf {
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.table-pedimento {
    font-size: 12px;
}

.estado-pagado {
    background-color: #e8fff3;
    color: black;
    text-align: center;
}

.estado-no-pagado {
    background-color: #9F2241;
    color: white;
    text-align: center;
}

.table-responsive-custom {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 20px;
}

.table-min-800 {
    min-width: 800px;
}

.table-min-900 {
    min-width: 900px;
}

.text-center-style {
    text-align: center;
}

.resultado-consulta {
    background-color: #e8fff3;
    width: 100px;
    cursor: pointer;
}

.icon-style {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.modal-note {
    font-size: 12px;
    position: absolute;
    left: 350px;
    display: none;
    z-index: 100;
}

.w-55 {
    width: 55%;
}

.inline-hidden {
    display: none;
}

.display-block {
    display: block;
}

/* Inputs personalizados */
.input-uppercase-center {
    text-transform: uppercase;
    text-align: center;
}

.input-width-280 {
    width: 280px;
}

.input-width-380 {
    width: 380px;
}

.input-width-80 {
    width: 80px;
}

.image-icon {
    width: 30px;
    height: 30px;
    text-align: center;
}

.icon-right-margin {
    margin-right: 10px;
}

.text-green-custom {
    color: #1b8118;
}

.text-red-custom {
    color: #9F2241;
}

.bg-verde-pastel {
    background-color: #e8fff3;
}
.hidden {
    display: none;
}
.oculto-complementos {
    display: none !important;
}
.flex-column {
    display: flex;
    flex-direction: column;
}

.text-xs {
    font-size: 12px;
}

.text-gray {
    color: gray;
}
.input-contenedor {
    text-transform: uppercase;
}
.error-patente-doc {
    margin-left: 210px;
    display: none;
}

.error-contenedor {
    color: red;
}


.titulo-tabla {
    color: #1b8118;
}

.total-registros {
    color: gray;
    display: flex; 
    justify-content: flex-end; 
}

.thead-contenedor {
    background-color: #235b4e;
    color: white;
}

.tabla-contenedor {
    font-size: 14px;
}

.titulo-pedimentos {
    color: #1b8118;
}

.thead-pedimentos {
    background-color: #235b4e;
    color: white;
}


.icono-ojo {
    width: 15px;
    height: 15px;
    cursor: pointer;
}

.tabla-pedimentos {
    font-size: 14px;
}
.seccion-pago-contenedor {
    display: none;
}

.thead-pago {
    background-color: #235b4e;
    color: white;
}

.tabla-pago {
    font-size: 14px;
}
.detalle-pedimento-contenedor {
    display: none;
}

.titulo-detalle-pedimento {
    color: #9F2241;
}

.thead-movimientos {
    background-color: #235b4e;
    color: white;
}
.botones-globales {
    align-items: center;
    justify-content: space-between;
}

.ocultoRecaptcha {
    visibility: hidden !important;
    pointer-events: none !important;
}

.mostrar-flex {
    display: flex !important;
}

.ocultar {
    display: none !important;
}

.icono-opaco {
    filter: brightness(0) invert(0);
}
.footer-container {
    text-align: center;
}

@media (max-width: 480px) {
    /* Estilos para móviles pequeños */
    .contendor-datos-vin {
        flex-wrap: wrap;
    }

    .input-vin {
        width: 200px;
    }
    .input-vin-aduana {
        width: 290px; 
    }

    .capturarLC {
        width: 100%;
    
        label {
            width: 150px;
        }
    }
    
    #btn-global {
        display: flex; 
        flex-direction: row-reverse;
        
        div {
            flex: 1; 
        }
    }

    .tabla-scroll-responsive {
        overflow-x: auto;
        width: 100%;
    }

    .tabla-scroll-responsive table {
        min-width: 768px; 
    }

    .total-registros {
        display: flex; 
        justify-content: flex-end;
    }

    .vehiculo-bloque {
        flex-wrap: wrap;
    }

    .tabla-vehicular-container {
        flex-direction: column;
    }

    .vehiculo-columna.imp-exp {
        width: 100%;
    }

    .vehiculo-subseccion.sub-container {
        flex-direction: column;
    }

    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: left;
    }
    .btn-icon {
        padding: 0.25rem !important;
    }
    #btn-global {
        flex-wrap: nowrap;
    }
}

@media (min-width: 481px) and (max-width: 991px) {
    .tabla-scroll-responsive {
        overflow-x: auto;
        width: 100%;
    }

    .tabla-scroll-responsive table {
        min-width: 768px; 
    }

    
}


@media (min-width: 992px) {
    .tabla-scroll-responsive {
        overflow-x: auto;
        width: 100%;
    }

    .input-vin {
        width: 200px;
    }
    
    .input-vin-aduana {
        width: 300px;
    }
    
    .capturarLC label {
        width: 150px;
    }

    .tabla-vehicular-container {
        flex-direction: column;
    }

    .vehiculo-columna.imp-exp {
        width: 100%;
    }
    .vehiculo-columna.datos-pedimento  {
        width: 60%;
    }
}

@media (min-width: 1200px) {
    /* Estilos para pantallas grandes */
}