/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background-color: #f5f5f5;
}


.header {
    background-color: #2A6DF4;
    padding: 20px;
    color: white;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header img {
    height: 50px;
    margin-right: 10px;
}

.header-text {
    flex-grow: 1;
    text-align: center;
}


.header .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.header nav ul li {
    display: inline;
}

.header nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: color 0.3s;
}

.header nav ul li a:hover {
    color: #ffcc00;
}

/* Barra de información de usuario */
.user-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #dee2e6;
}

.user-info {
    font-weight: bold;
    color: #2c3e50;
}

/* Header principal */
.main-header {
    background-color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 0 20px;
}

.logo {
    height: 60px;
    width: auto;
}

.header-titles {
    border-left: 3px solid #007bff;
    padding-left: 25px;
}

h1 {
    margin: 0;
    color: #2c3e50;
    font-size: 24px;
}

.header-subtitle {
    margin: 5px 0 0 0;
    color: #6c757d;
    font-size: 14px;
}

/* Migas de pan */
.breadcrumb {
    padding: 10px 0;
    color: #6c757d;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.breadcrumb span {
    color: #2c3e50;
    font-weight: bold;
}

/* Encabezado anticipo */
.anticipo-header {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.header-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}

.monto-destacado {
    font-size: 24px;
    font-weight: bold;
    color: #28a745;
}

.nombre-anticipo h2 {
    color: #2c3e50;
    margin: 15px 0 5px 0;
}

.nombre-anticipo p {
    color: #6c757d;
    margin: 0;
}

/* Secciones de tablas */
.seccion-tabla {
    margin: 30px 0;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.seccion-tabla h3 {
    color: #2c3e50;
    border-left: 4px solid #007bff;
    padding-left: 15px;
    margin-top: 0;
}

/* Login específico */
.login-form {
    max-width: 500px;
    margin: 50px auto;
    padding: 40px;
    text-align: center;
}

.login-header {
    margin-bottom: 30px;
}

.login-logo {
    height: 80px;
    margin-bottom: 20px;
}

.login-header h1 {
    color: #2c3e50;
    margin: 10px 0;
    font-size: 26px;
}

.login-header p {
    color: #6c757d;
    font-size: 14px;
}

.form-login {
    margin: 30px 0;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #495057;
    font-weight: 500;
}

.input-estilizado {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.input-estilizado:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    margin-top: 15px;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
    border: 1px solid #f5c6cb;
}

.login-footer {
    margin-top: 25px;
    color: #6c757d;
    font-size: 14px;
}

.login-footer a {
    color: #007bff;
    text-decoration: none;
}
/* Contenedor de formulario */
.form-container {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    margin-top: 20px;
}

/* Filas para campos en línea */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Textarea especial */
.textarea-estilizado {
    height: 100px;
    resize: vertical;
}

/* Acciones del formulario */
.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    border-top: 1px solid #eee;
    padding-top: 25px;
}

.btn-primary {
    background-color: #007bff;
}

.btn-primary:hover {
    background-color: #0069d9;
}

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}
/* Icono para Excel */
.fa-file-excel {
    margin-right: 8px;
    color: #217346;
}

/* Ajuste específico para campos monetarios */
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

input[type="number"] {
    -moz-appearance: textfield;
}
/* Estilos para detalle de solicitud */
.detalle-container {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.detalle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #eee;
}

.estado-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
}

.info-item {
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

.info-item label {
    display: block;
    color: #6c757d;
    font-weight: 500;
    margin-bottom: 5px;
}

.info-item span {
    font-size: 16px;
    color: #2c3e50;
}

.tabla-detalle {
    margin: 25px 0;
}

.btn-ver {
    background-color: #17a2b8;
    color: white;
    padding: 6px 12px;
    margin-right: 8px;
}

.btn-ver:hover {
    background-color: #138496;
}

.form-inline {
    display: inline-block;
    margin-left: 8px;
}
/* Checkboxes */
input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #007bff;
}

.form-group label::after {
    content: " *";
    color: #dc3545;
    font-weight: bold;
}
#form-facturas table th:first-child,
#form-facturas table td:first-child {
    width: 30px;
    text-align: center;
}
/* Estado rechazada */
.estado-rechazada {
    color: #dc3545;
    font-weight: bold;
    background: #fff5f5;
}

/* Botón volver */
.btn.volver {
    background-color: #6c757d;
    margin-top: 30px;
}

.btn.volver:hover {
    background-color: #5a6268;
}
.btn-logout {
    background-color: #dc3545;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.btn-logout:hover {
    background-color: #c82333;
}

/* Contenedor principal */
.solicitudes-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/* Sección de Acceso Rápido */
.acceso-rapido {
    margin-bottom: 30px;
}

.acceso-rapido ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.acceso-rapido li {
    background-color: #e9ecef;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
}

.acceso-rapido li:hover {
    background-color: #dee2e6;
}

/* Distribución de Dinero */
.distribucion-dinero {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.dinero-card {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.dinero-card p:first-child {
    font-size: 24px;
    font-weight: bold;
    margin: 10px 0;
    color: #2c3e50;
}

/* Tablas */

table {
    width: 100%;
    margin: 20px 0;
    border: 1px solid #dee2e6;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

th {
    background-color: #f8f9fa;
}

/* Botones */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 5px 0;
}

.btn:hover {
    background-color: #0056b3;
}

/* Formularios */
form {
    margin: 15px 0;
}

input[type="file"], select {
    padding: 8px;
    margin: 5px 0;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

/* Estados */
.Rechazada {
    color: #dc3545;
    font-weight: bold;
}

.Aprobado {
    color: #28a745;
    font-weight: bold;
}

.Pendiente {
    color: #ffc107;
    font-weight: bold;
}

/* styles.css - Añadir estos estilos */

td {
    padding: 12px;
    background-color: #fff;
    border-bottom: 1px solid #dee2e6;
}

tr:last-child td {
    border-bottom: none;
}

tr:nth-child(even) td {
    background-color: #f8f9fa;
}

/* Contenedor principal de dos columnas */
.contenedor-columnas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

/* Columnas individuales */
.columna-izquierda, 
.columna-derecha {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Tablas dentro de las columnas */
.tabla-anticipos,
.tabla-facturas {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.tabla-anticipos td, 
.tabla-facturas td {
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.tabla-anticipos tr:last-child td,
.tabla-facturas tr:last-child td {
    border-bottom: none;
}

/* Enlace "Ver todas" */
.ver-todas {
    margin-top: 20px;
    text-align: right;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .contenedor-columnas {
        grid-template-columns: 1fr;
    }
    
    .columna-izquierda,
    .columna-derecha {
        margin-bottom: 20px;
    }
}

.dinero-card.meses-anteriores {
    background-color: #ffebee; /* Rojo claro */
    border-left: 4px solid #f44336; /* Borde lateral rojo */
    color: #c62828; /* Texto rojo oscuro para contraste */
}

/* Opcional: Efecto hover */
.dinero-card.meses-anteriores:hover {
    background-color: #ffcdd2; /* Rojo un poco más intenso al pasar el mouse */
}

.fila-blanca {
    background-color: #ffffff;
}

.fila-gris {
    background-color: #f5f5f5;
}

/* Estilos para los botones de acceso rápido */
.acceso-rapido ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.acceso-rapido li {
    margin: 0;
    padding: 0;
}

.btn-acceso {
    display: block;
    padding: 14px;
    background-color: #f5f5f5; /* Gris muy claro */
    color: #333; /* Texto oscuro para contraste */
    text-decoration: none;
    text-align: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    font-weight: 500;
    border: 1px solid #e0e0e0; /* Borde sutil */
}

.btn-acceso:hover {
    background-color: #eeeeee; /* Gris un poco más oscuro al pasar el mouse */
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Versión responsiva */
@media (max-width: 768px) {
    .acceso-rapido ul {
        grid-template-columns: 1fr;
    }
}
/* Estilo para el saldo disponible */
.saldo-disponible {
    color: #28a745;
    font-weight: bold;
}

/* Estilo para el saldo agotado */
.saldo-agotado {
    color: #dc3545;
    font-weight: bold;
}

/* Estilo para el monto asignado */
.monto-asignado {
    color: #6c757d;
    font-weight: 500;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.form-group {
    flex: 1;
    min-width: 200px;
    padding: 0 10px;
    margin-bottom: 15px;
}
.input-estilizado {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.textarea-estilizado {
    width: 100%;
    height: 100px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}
.btn-primary {
    background-color: #4CAF50;
    color: white;
}
.btn-secondary {
    background-color: #f44336;
    color: white;
}
.alert-error {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 4px;
}
.gastos-container {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
}
.gasto-row {
    display: flex;
    margin-bottom: 10px;
    align-items: center;
}
.gasto-row select, .gasto-row input {
    margin-right: 10px;
    flex: 1;
}

/* Estados de factura */
.badge-pendiente {
    background-color: yellow;
    color: black;
}

.badge-rechazado {
    background-color: red;
    color: white;
}

.badge-aprobado {
    background-color: transparent;
    color: inherit;
    border: 1px solid #ccc; /* Opcional: para mantener el borde si el fondo es transparente */
}