/* Formulario de filtros */
.moliday-filtros {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.filtro-group {
    display: flex;
    flex-direction: column;
}

.filtro-group label {
    margin-bottom: 5px;
    font-weight: 600;
}

/* Tabla de pedidos */
.moliday-tabla {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

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

.moliday-tabla th {
    background-color: #91d3c2;
    color: white;
}

/* Botones */
.button {
    background: #91d3c2;
    color: white !important;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button:hover {
    background: #7abfad;
}

/* Estilos para impresión */
@media print {
    .moliday-filtros {
        display: none;
    }
}