/**
 * Custom Inline CSS - Extracted from PHP files
 * Club Atlético Santa Rosa - Sistema de Gestión
 * Este archivo consolida todos los estilos inline previamente dispersos
 */

/* ========================================
   ESTILOS GENERALES DE NAVEGACIÓN
   ======================================== */

/* Logo de navegación navideño/festivo */
.imgnaviclas {
    height: 50px;
    position: absolute;
    top: 0px;
    left: -40px;
    z-index: 99999999;
}

/* ========================================
   ESTILOS DE IMPRESIÓN
   ======================================== */

/* Estilos para páginas de impresión (print.php, print_generar.php, etc) */
@media print {
    body {
        font-family: Arial, sans-serif;
        font-size: 12px;
    }
    
    .no-print {
        display: none !important;
    }
    
    table {
        width: 100%;
        border-collapse: collapse;
    }
    
    table td, table th {
        border: 1px solid #000;
        padding: 5px;
    }
}

/* Estilos de tabla para impresión de boletas */
.print-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.print-table td, .print-table th {
    border: 1px solid #333;
    padding: 8px;
    text-align: left;
}

.print-table th {
    background-color: #f0f0f0;
    font-weight: bold;
}

/* ========================================
   ESTILOS DE MODAL/SELECCIÓN
   ======================================== */

/* Modales de selección (cobrador, vendedor, profesional, socios) */
.modal-select-list {
    max-height: 400px;
    overflow-y: auto;
}

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

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

/* ========================================
   ESTILOS DE DEUDA/PAGOS
   ======================================== */

/* Tablas de deuda (cobrodirecto/deuda.php, caja/deuda.php) */
.deuda-table {
    width: 100%;
}

.deuda-row-pending {
    background-color: #fff3cd;
}

.deuda-row-paid {
    background-color: #d4edda;
}

.deuda-amount {
    font-weight: bold;
    text-align: right;
}

/* ========================================
   UTILI DADES COMUNES
   ======================================== */

/* Centrado */
.text-center-custom {
    text-align: center;
}

/* Negrita */
.bold-custom {
    font-weight: bold;
}

/* Espaciado */
.mt-10 {
    margin-top: 10px;
}

.mb-10 {
    margin-bottom: 10px;
}

.p-10 {
    padding: 10px;
}


/* ========================================
   ESTILOS ESPECÍFICOS DE INDE.PHP
   ======================================== */

/* Enlaces estándar */
.link {
    color: #000;
}

/* iFrame de farmacia */
.iframefarmacia {
    width: 100%;
    height: 500px;
    border: 0 none;
}

