/* EMPRESA PORTAL STYLES - ARCHIVO COMPLETO */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&family=Raleway:wght@300;400;700;900&display=swap');

/* ESTILOS BASE */
body {
    font-family: 'Lato', sans-serif;
    background-color: #f5f7fa;
    color: #333;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    margin-top: 0;
}

a {
    text-decoration: none;
    color: #fc6404;
    transition: color 0.3s;
}

a:hover {
    color: #e05a03;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ESTILOS PARA LOGIN */
.empresa-login-page {
    background-color: #2d2d2d;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.login-container {
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-header h1 {
    color: #2d2d2d;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 10px;
}

.login-header p {
    color: #666;
    margin: 0;
}

.login-logo {
    height: 80px;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* FORMULARIOS */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

.form-control:focus {
    border-color: #fc6404;
    outline: none;
    box-shadow: 0 0 0 2px rgba(252, 100, 4, 0.2);
}

/* BOTONES */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-primary {
    background-color: #fc6404;
    color: white;
}

.btn-primary:hover {
    background-color: #e05a03;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #f0f0f0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
}

.btn-danger {
    background-color: #dc3545;
    color: white;
    margin-right: 20px;
}

.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 15px;
    font-size: 14px;
}

.btn-success {
    background-color: #fc6404;
    color: white;
}

.btn-success:hover {
    background-color: #e05a03;
    transform: translateY(-2px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* ALERTAS */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 1px solid transparent;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border-color: #bee5eb;
}

/* DASHBOARD */
.empresa-dashboard {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.dashboard-header {
    background-color: #2d2d2d;
    color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info {
    padding-left: 20px;
}

.user-info h1 {
    margin: 0;
    color: white;
    font-size: 20px;
}

.user-info p {
    margin: 5px 0 0;
    color: #ccc;
    font-size: 14px;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.dashboard-main {
    flex: 1;
    padding: 30px 0;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

/* TARJETAS KPI */
.kpi-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.kpi-icon {
    font-size: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(252, 100, 4, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fc6404;
}

.kpi-content h3 {
    font-size: 16px;
    color: #666;
    margin-bottom: 5px;
}

.kpi-value {
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
}

/* ACCIONES RÁPIDAS */
.quick-actions {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    grid-column: span 2;
}

.quick-actions h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.action-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.action-btn {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 1px solid #eee;
}

.action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-color: #fc6404;
}

.action-btn i {
    font-size: 30px;
    color: #fc6404;
    margin-bottom: 10px;
}

.action-btn span {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

/* GRÁFICO */
.chart-container {
    box-sizing: border-box; /* <-- AÑADIR ESTO */
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    grid-column: span 2;
    
    position: relative;
    height: 400px;
    width: 100%; /* Ahora este 100% incluirá el padding */
}

.chart-container h2 {
    font-size: 20px;
    margin-bottom: 10px; /* Reduce un poco si el espacio es justo */
    color: #2d2d2d;
    text-align: center;
}

.chart-container canvas {
    /* Ya no necesitarías max-width y max-height con !important aquí si el box-sizing soluciona el desbordamiento del contenedor */
    /* Dejar por si acaso, pero idealmente el contenedor maneja las dimensiones */
    max-width: 100%;
    max-height: 100%;
}

/* FACTURAS PENDIENTES */
.pending-invoices {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 20px;
    grid-column: 1 / -1; /* Esto hará que ocupe todas las columnas disponibles */
    margin-top: 20px; /* Espacio adicional si es necesario */
}



/* MODAL DE DESCARGA */
.loading-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

        .loading-modal-content {
            background-color: #fefefe;
            margin: 15% auto; /* 15% from the top and centered */
            padding: 20px;
            border: 1px solid #888;
            width: 80%; /* Could be more or less, depending on screen size */
            max-width: 400px;
            text-align: center;
            border-radius: 8px;
            box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
        }

        .loading-modal-content .spinner {
            border: 4px solid #f3f3f3; /* Light grey */
            border-top: 4px solid #3498db; /* Blue */
            border-radius: 50%;
            width: 40px;
            height: 40px;
            animation: spin 2s linear infinite;
            margin: 0 auto 20px auto;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }



/* MODAL DE CONFIRMACION PERSONALIZADO */
.confirm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1100;
    align-items: center;
    justify-content: center;
}

.confirm-modal-content {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.confirm-modal-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}




/* TABLAS */
.table-responsive {
    overflow-x: auto;
    margin-bottom: 20px;
}

.table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.table th, .table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.table tr:hover {
    background-color: #f9f9f9;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

/* BADGES */
.status-badge {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
}

.status-pending {
    background-color: #fff3cd;
    color: #856404;
}

.status-paid {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive {
    background-color: #f8f9fa;
    color: #6c757d;
}

.status-blocked {
    background-color: #f8d7da;
    color: #721c24; 
}

/* ICONOS ACCIONES */
.action-icon {
    font-size: 16px;
    margin: 0 5px;
    cursor: pointer;
    transition: color 0.3s;
}

.edit-icon {
    color: #17a2b8;
}

.edit-icon:hover {
    color: #117a8b;
}

.delete-icon {
    color: #dc3545;
}

.delete-icon:hover {
    color: #bd2130;
}

.pdf-icon {
    color: #dc3545;
    font-size: 20px; /* Tamaño un poco más grande */
    display: inline-block;
    width: 100%;
    text-align: center;
}

.pdf-icon:hover {
    color: #bd2130;
    transform: scale(1.1); /* Efecto de crecimiento al hover */
    transition: all 0.3s ease;
}

/* PAGINACIÓN */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    display: block;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    transition: all 0.3s;
}

.pagination .page-link:hover {
    background-color: #f0f0f0;
}

.pagination .active .page-link {
    background-color: #fc6404;
    border-color: #fc6404;
    color: white;
}

.pagination .disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #f8f9fa;
}

/* Estilos para el resumen de facturas */
.invoice-summary {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.summary-label {
    font-weight: 600;
    color: #555;
}

.summary-value {
    font-weight: 700;
    color: #2d2d2d;
    font-size: 18px;
}


/* FORMULARIO CLIENTES/FACTURAS */
.form-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
}

.form-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2d2d2d;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.form-title i {
    margin-right: 10px;
    color: #fc6404;
}



.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.form-col {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
    margin-bottom: 20px;
}

.form-actions {
    display: flex;
    justify-content: flex-end; /* Alinea los botones a la derecha */
    gap: 15px; /* Espacio entre botones */
    margin-bottom: 20px; /* Espacio inferior */
    padding-bottom: 10px;
    margin-top: 20px; /* Espacio superior */
    padding-top: 20px; /* Aumentado para más separación visual */
    border-top: 1px solid #eee;
}

/* Estilos para el formulario de filtros compacto */
.filter-form .form-row {
    margin-bottom: 10px; /* Reduce el espacio entre filas */
}

.filter-form .form-col {
    margin-bottom: 10px; /* Reduce el espacio entre columnas */
    padding: 0 8px; /* Reduce el padding horizontal */
}

.filter-form .form-group {
    margin-bottom: 8px; /* Reduce espacio entre label y control */
}

.filter-form .form-control {
    padding: 8px 12px; /* Reduce el padding interno de los inputs */
    
}

.filter-form label {
    margin-bottom: 5px; /* Reduce espacio debajo de los labels */
   
}

.filter-form .form-actions {
    margin-top: 15px; /* Reduce espacio superior de los botones */
    padding-top: 15px; /* Reduce espacio interno superior */
}

/* ESTILOS PARA GESTION CLIENTES */
.table-actions {
    display: flex;
    justify-content: space-between; /* Esto empuja el form a la izq. y el botón a la der. */
    align-items: center; /* Alinea verticalmente los items si tienen alturas diferentes */
    margin-bottom: 20px; /* Espacio inferior antes de la tabla */
    padding-bottom: 10px; /* Un poco de padding si se añade un borde inferior */
    border-bottom: 1px solid #eee; /* Opcional: similar a form-actions en gestion_facturas */
}

/* Estilos específicos para el formulario de búsqueda dentro de table-actions */
.table-actions .search-form {
    display: flex; /* El formulario en sí puede ser flex para manejar su contenido */
    flex-grow: 1; /* Permite que el formulario ocupe espacio disponible si es necesario */
    margin-right: 15px; /* Espacio entre el form de búsqueda y el botón de nuevo cliente */
}

.table-actions .search-form .form-group {
    display: flex; /* Hace que el input y los botones dentro del form-group se alineen */
    align-items: center;
    gap: 10px; /* Espacio entre el input, botón buscar y botón limpiar */
    margin-bottom: 0 !important; /* Quita el margen inferior del form-group aquí */
    width: 100%; /* Para que el form-group ocupe el espacio del search-form */
}

.table-actions .search-form .form-control {
    flex-grow: 1; /* Para que el input de búsqueda ocupe el espacio disponible */
}

/* Asegurar que los botones dentro del search-form no se encojan demasiado */
.table-actions .search-form .btn {
    flex-shrink: 0;
}

.table-actions .search-form .form-group a.btn {
    /* Si el problema es solo con el <a>, aplica los ajustes aquí.
       Si el botón <button> también necesita ajuste, usa la regla de arriba .btn */
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.5; /* Ajusta según sea necesario */
}


/* MODAL */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1050;
    overflow-y: auto;
}

.modal-dialog {
    max-width: 800px;
    margin: 30px auto;
    position: relative;
}

.modal-content {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.modal-header {
    padding: 15px 20px;
    background-color: #2d2d2d;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 5px;
}

.modal-body {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-actions, .chart-container {
        grid-column: span 1;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-col {
        width: 100%;
    }
    
    .table th, .table td {
        padding: 8px 10px;
    }
    
    .kpi-card {
        flex-direction: column;
        text-align: center;
    }
    
    .kpi-icon {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .login-container {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}