/* Estilos generales */
.info-cliente {
    border-radius: 20px;
    padding: 13px;
    border: 1px solid #6666667d;
}

.aceitunas-tickets {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Tabla - Escritorio */
.tickets-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    overflow-x: auto; /* Scroll horizontal en móviles si es necesario */
}

.tickets-table th, 
.tickets-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

.tickets-table th {
    background-color: #e9ca50;
    font-weight: 600;
}

/* Info Cliente */
.info-cliente p {
    margin: 0 0 10px 0;
    font-size: 16px;
}

/* Paginación */
.paginacion {
    margin-top: 20px;
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.paginacion a {
    display: inline-block;
    padding: 8px 12px;
    background: #f0f0f0;
    text-decoration: none;
    border-radius: 3px;
    transition: background 0.3s;
}

.pagina-actual {
    background: #0073aa !important;
    color: white;
}

@media screen and (max-width: 768px) {
    .tickets-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}


/* Responsive: Smartphones (max 768px) */
@media (max-width: 768px) {
    /* Ocultar columnas Serie Albarán (2) y Código Aceituna (4) *//*
    .tickets-table th:nth-child(2),
    .tickets-table td:nth-child(2),
    .tickets-table th:nth-child(4),
    .tickets-table td:nth-child(4) {
        display: none;
    }*/

    /* Ajustar tamaños de texto */
    .tickets-table th, 
    .tickets-table td {
        padding: 8px;
        font-size: 13px;
    }

    /* Reducir margen superior en móviles */
    .aceitunas-tickets {
        padding: 15px;
        margin: 10px auto;
    }

    /* Mejorar visualización de headers visibles */
    .tickets-table th:nth-child(1) { min-width: 90px; } /* Fecha */
    .tickets-table th:nth-child(3) { min-width: 80px; } /* Nº Ticket */
    .tickets-table th:nth-child(5) { min-width: 120px; } /* Tipo Aceituna */
}

/* Optimización para pantallas muy pequeñas (ej: < 480px) */
@media (max-width: 480px) {
    .info-cliente p {
        font-size: 14px;
    }

    .paginacion a {
        padding: 6px 10px;
        font-size: 13px;
    }
}