/* Formularios separados */
.formulario-navegacion {
    margin-top: 15px;
    display: flex;
    justify-content: center;
}

.navegacion {
    display: flex;
    gap: 10px;
}/* Separadores entre secciones */
.separador-seccion {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

/* Títulos de secciones */
.titulo-seccion {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3em;
    text-align: center;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
    display: inline-block;
}/* Informes adicionales - NUEVA SECCIÓN */
.informes-adicionales {
    margin-top: 30px;
    background-color: #e8f4fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    text-align: center;
}

.informes-adicionales h2 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.lista-informes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.boton-informe {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.boton-informe:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}/* Alerta importante */
.alerta-importante {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #f5c6cb;
    font-size: 0.95em;
}

.alerta-importante p {
    margin: 5px 0;
}

.alerta-importante strong {
    font-weight: bold;
}

.btn-actualizar {
    display: inline-block;
    background-color: #dc3545;
    color: white;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: bold;
}

.btn-actualizar:hover {
    background-color: #c82333;
}/* Sección de otros informes */
.separador-informes {
    margin: 40px 0 30px;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0));
}

.otros-informes {
    margin-bottom: 30px;
    text-align: center;
}

.otros-informes h2 {
    margin-bottom: 25px;
    color: #2c3e50;
    font-size: 1.5em;
}

.informes-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.tarjeta-informe {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s, box-shadow 0.3s;
}

.tarjeta-informe:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.icono-informe {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.tarjeta-informe h3 {
    margin: 10px 0;
    color: #3498db;
    font-size: 1.2em;
}

.tarjeta-informe p {
    margin-top: 10px;
    font-size: 0.9em;
    color: #7f8c8d;
    text-align: center;
}/* Separador */
.separador {
    margin: 30px 0;
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0));
}/* Formulario de búsqueda */
.seccion-busqueda {
    margin-top: 30px;
    padding: 20px;
    background-color: #f5f9fc;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.seccion-busqueda h2 {
    font-size: 1.2em;
    margin-top: 0;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: flex-end;
}

.form-row .form-group {
    flex: 1;
    min-width: 200px;
}/* Autocompletado */
.sugerencias-container {
    position: relative;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    z-index: 1000;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 5px;
}

.sugerencia-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.sugerencia-item:hover {
    background-color: #f5f5f5;
}

.sugerencia-item:last-child {
    border-bottom: none;
}

.input-group {
    position: relative;
    display: flex;
    width: 100%;
}/* Estilos generales */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f8f9fa;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

h2 {
    color: #2c3e50;
    margin-bottom: 20px;
}

/* Formulario */
.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.input-group {
    display: flex;
    gap: 10px;
}

.input-group input {
    flex: 1;
}

/* Botones */
.botones {
    margin-top: 30px;
}

button {
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primario {
    background-color: #3498db;
    color: white;
}

.btn-primario:hover {
    background-color: #2980b9;
}

.btn-secundario {
    background-color: #95a5a6;
    color: white;
}

.btn-secundario:hover {
    background-color: #7f8c8d;
}

.btn-peligro {
    background-color: #e74c3c;
    color: white;
}

.btn-peligro:hover {
    background-color: #c0392b;
}

button:disabled {
    background-color: #ddd;
    cursor: not-allowed;
}

/* Formulario de navegación */
.form-navegacion {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px dashed #ddd;
}

.navegacion {
    display: flex;
    gap: 10px;
    justify-content: center;
}

/* Estadísticas */
.estadisticas {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-contenido {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 60%;
    max-width: 500px;
}

.cerrar {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.cerrar:hover {
    color: black;
}

.lista-partidas, .lista-sitios, .lista-medios-pago {
    max-height: 300px;
    overflow-y: auto;
    margin-top: 20px;
}

.partida-item, .sitio-item, .medio-pago-item {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.partida-item:hover, .sitio-item:hover, .medio-pago-item:hover {
    background-color: #f8f9fa;
}
