/* ── Pedidos Lolo — App CSS ── */

body {
    background-color: #f8f9fa;
    font-size: 0.925rem;
}

/* Navbar */
.navbar-brand { letter-spacing: 0.03em; }

/* Sidebar / page layout */
.page-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.25rem 1rem;
}

/* Cards de estadísticas */
.stat-card {
    border-left: 4px solid;
    border-radius: 0.5rem;
}
.stat-card.pendientes { border-color: #ffc107; }
.stat-card.confirmados { border-color: #0dcaf0; }
.stat-card.vendido    { border-color: #198754; }
.stat-card.ganancia   { border-color: #6f42c1; }

/* Tabla de pedidos */
.table-pedidos th { white-space: nowrap; }
.table-pedidos td { vertical-align: middle; }

/* Formulario de pedido — filas de items */
.item-row td { padding: 0.35rem 0.5rem; }
.item-row .form-control, .item-row .form-select { font-size: 0.9rem; }
#items-table tfoot td { font-weight: 600; background: #f1f3f5; }

/* Badge estados */
.badge { font-size: 0.8em; }

/* Impresión */
@media print {
    .navbar, .btn, .no-print { display: none !important; }
    .card { border: none !important; box-shadow: none !important; }
}

/* Responsivo — ajustes mobile */
@media (max-width: 576px) {
    .page-wrapper { padding: 0.75rem 0.5rem; }
    .stat-card .display-6 { font-size: 1.5rem; }
}
