:root {
    --dt-primary: #ff6b00;
    --dt-primary-dark: #e85d00;
    --dt-sidebar: #141b24;
}

body {
    background: #f4f6f9;
    color: #2b3440;
}

/* Layout admin com sidebar */
.dt-shell { display: flex; min-height: 100vh; }
.dt-sidebar {
    width: 250px;
    background: var(--dt-sidebar);
    color: #c8d0da;
    flex-shrink: 0;
}
.dt-sidebar .brand { color: #fff; font-weight: 700; letter-spacing: .5px; }
.dt-sidebar a { color: #c8d0da; text-decoration: none; border-radius: .5rem; }
.dt-sidebar a:hover, .dt-sidebar a.active { background: rgba(255,255,255,.08); color: #fff; }
.dt-sidebar a .fa-fw { width: 1.4rem; }
.dt-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.dt-topbar { background: #fff; border-bottom: 1px solid #e6e9ee; }
.dt-content { padding: 1.5rem; flex: 1; }

.btn-primary { background: var(--dt-primary); border-color: var(--dt-primary); }
.btn-primary:hover { background: var(--dt-primary-dark); border-color: var(--dt-primary-dark); }
.text-primary { color: var(--dt-primary) !important; }
.card { border: none; box-shadow: 0 1px 3px rgba(16,24,40,.08); border-radius: .75rem; }
.is-warning { border-color: #ffc107 !important; box-shadow: 0 0 0 .15rem rgba(255,193,7,.25); }

/* Badges de status do pedido */
.badge.status-criado { background:#6c757d; }
.badge.status-preparando { background:#0d6efd; }
.badge.status-pronto { background:#0dcaf0; color:#06303a; }
.badge.status-despachado { background:#6610f2; }
.badge.status-entregando { background:#fd7e14; }
.badge.status-entregue { background:#198754; }
.badge.status-cancelado { background:#dc3545; }

@media (max-width: 768px) {
    .dt-sidebar { width: 64px; }
    .dt-sidebar .label { display: none; }
}
