/* ============================================================
   Sistema de Pré-Pesagem para Padaria e Confeitaria v2.0
   Design System - Modern Dark Mode & Glassmorphism Aesthetics
   ============================================================ */

:root {
  --bg-dark: #f0f4f8; /* Light background azulado */
  --bg-card: rgba(255, 255, 255, 0.92);
  --bg-card-border: rgba(15, 45, 82, 0.12);
  --bg-input: #ffffff;
  --text-main: #0f2d52; /* Azul marinho escuro */
  --text-muted: #3d6080; /* Azul acinzentado médio */
  --navy: #0f2d52; /* Cor base do tema navy */
  --navy-hover: #0a1f3a;
  --accent-primary: #f59e0b; /* Ambar Padaria Gold */
  --accent-primary-hover: #d97706;
  --accent-secondary: #10b981; /* Verde Sucesso */
  --accent-blue: #3b82f6;
  --accent-purple: #8b5cf6;
  --accent-danger: #ef4444;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-glow: 0 10px 30px -10px rgba(245, 158, 11, 0.3);
  --font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family);
}

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 0% 0%, rgba(245, 158, 11, 0.08) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.08) 0px, transparent 50%);
  background-attachment: fixed;
}

/* Scrollbar Stylings */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(15, 45, 82, 0.05);
}
::-webkit-scrollbar-thumb {
  background: #3d6080;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0f2d52;
}

/* App Layout */
#app-container {
  display: flex;
  width: 100vw;
  height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
  width: 260px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border-right: 1px solid var(--bg-card-border);
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  z-index: 100;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--bg-card-border);
  margin-bottom: 20px;
}

.brand-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-hover));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: var(--shadow-glow);
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.brand-sub {
  font-size: 0.75rem;
  color: var(--accent-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
}

.nav-item i {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.nav-item:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-main);
}

.nav-item.active {
  background: linear-gradient(90deg, rgba(15, 45, 82, 0.12), rgba(15, 45, 82, 0.02));
  color: #0f2d52;
  border-left: none;
  box-shadow: inset 3px 0 0 0 #0f2d52;
  font-weight: 700;
}

.sidebar-user {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--bg-card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.user-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-main);
}

.user-name {
  font-size: 0.85rem;
  font-weight: 600;
}

.user-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.btn-logout {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: color 0.2s;
}

.btn-logout:hover {
  color: var(--accent-danger);
}

/* Main Content Area */
.main-content {
  flex: 1;
  overflow-y: auto;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.page-title h1 {
  font-size: 1.75rem;
  font-weight: 700;
}

.page-title p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Cards & Glassmorphism Containers */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Metric Cards Grid */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.metric-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.metric-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.metric-icon.gold { background: rgba(245, 158, 11, 0.15); color: var(--accent-primary); }
.metric-icon.blue { background: rgba(59, 130, 246, 0.15); color: var(--accent-blue); }
.metric-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--accent-secondary); }
.metric-icon.purple { background: rgba(139, 92, 246, 0.15); color: var(--accent-purple); }

.metric-val {
  font-size: 1.6rem;
  font-weight: 700;
}

.metric-lbl {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form Controls & Inputs */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
}

.form-control {
  background: var(--bg-input);
  border: 1px solid rgba(15, 45, 82, 0.2);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--text-main);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

select.form-control option {
  background: #ffffff;
  color: var(--text-main);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-hover));
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(245, 158, 11, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-primary-hover), #b45309);
  transform: translateY(-1px);
}

.btn-secondary {
  background: #0f2d52;
  color: #fff;
}

.btn-secondary:hover {
  background: #0a1f3a;
}

.btn-success {
  background: var(--accent-secondary);
  color: #fff;
}

.btn-danger {
  background: var(--accent-danger);
  color: #fff;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 0.8rem;
}

/* Data Tables */
.table-container {
  width: 100%;
  overflow-x: auto;
  border-radius: var(--radius-md);
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

table.data-table th {
  background: rgba(15, 45, 82, 0.06);
  padding: 14px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: uppercase;
  border-bottom: 1px solid var(--bg-card-border);
}

table.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.9rem;
}

table.data-table tbody tr:hover {
  background: rgba(15, 45, 82, 0.04);
}

/* Badges & Status */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.badge-aberta { background: rgba(59, 130, 246, 0.2); color: #60a5fa; border: 1px solid rgba(59, 130, 246, 0.3); }
.badge-producao { background: rgba(245, 158, 11, 0.2); color: #fbbf24; border: 1px solid rgba(245, 158, 11, 0.3); }
.badge-finalizada { background: rgba(16, 185, 129, 0.2); color: #34d399; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-cancelada { background: rgba(239, 68, 68, 0.2); color: #f87171; border: 1px solid rgba(239, 68, 68, 0.3); }

/* Import Dropzone */
.dropzone {
  border: 2px dashed rgba(245, 158, 11, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: all 0.2s;
}

.dropzone:hover, .dropzone.dragover {
  border-color: var(--accent-primary);
  background: rgba(245, 158, 11, 0.05);
}

.dropzone-icon {
  font-size: 3rem;
  color: var(--accent-primary);
  margin-bottom: 12px;
}

/* ============================================================
   LOGIN SCREEN - Split Panel Layout
   ============================================================ */
.login-screen {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.login-screen.active {
  opacity: 1;
  pointer-events: auto;
}

/* Left Panel */
.login-left {
  width: 52%;
  background: linear-gradient(145deg, #0a1f3a 0%, #0f2d52 50%, #1a4070 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.login-left::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.05);
  top: -200px; right: -200px;
}

.login-left::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.05);
  bottom: -150px; left: -150px;
}

.login-left-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.login-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.login-brand-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-hover));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
  flex-shrink: 0;
}

.login-brand-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}

.login-brand-sub {
  font-size: 0.75rem;
  color: rgba(245, 158, 11, 0.85);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Bakery Icon Ring */
.login-illustration {
  text-align: center;
}

.bakery-icons-ring {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 28px auto;
}

.bakery-center-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-hover));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #fff;
  box-shadow: 0 0 0 12px rgba(245, 158, 11, 0.1), 0 8px 24px rgba(245, 158, 11, 0.3);
}

.bakery-orbit {
  position: absolute;
  width: 46px; height: 46px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  animation: orbit-spin 12s linear infinite;
}

.bakery-orbit-1 { top: 0; left: 50%; margin-left: -23px; animation-delay: 0s; }
.bakery-orbit-2 { top: 50%; right: 0; margin-top: -23px; animation-delay: -3s; }
.bakery-orbit-3 { bottom: 0; left: 50%; margin-left: -23px; animation-delay: -6s; }
.bakery-orbit-4 { top: 50%; left: 0; margin-top: -23px; animation-delay: -9s; }

@keyframes orbit-spin {
  0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
  50% { box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.15); }
  100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.login-headline {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}

.login-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

/* Feature Card */
.login-feature-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  backdrop-filter: blur(8px);
}

.login-feature-icon {
  width: 44px; height: 44px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent-primary);
  flex-shrink: 0;
}

.login-feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.login-feature-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}

/* Right Panel */
.login-right {
  flex: 1;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.login-form-wrapper {
  width: 100%;
  max-width: 380px;
}

.login-form-header {
  margin-bottom: 32px;
}

.login-form-header h1 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 6px;
}

.login-form-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.login-form .form-group {
  margin-bottom: 20px;
}

.login-input {
  width: 100%;
  padding: 13px 16px !important;
  font-size: 0.95rem;
  border: 1.5px solid rgba(15, 45, 82, 0.15) !important;
  border-radius: var(--radius-sm) !important;
  transition: all 0.2s !important;
}

.login-input:focus {
  border-color: #0f2d52 !important;
  box-shadow: 0 0 0 3px rgba(15, 45, 82, 0.08) !important;
}

.btn-login {
  width: 100%;
  padding: 14px !important;
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0f2d52, #1a4070) !important;
  color: #fff !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 6px 20px rgba(15, 45, 82, 0.3) !important;
  transition: all 0.2s !important;
  margin-top: 8px;
}

.btn-login:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 45, 82, 0.4) !important;
}

.login-footer-info {
  margin-top: 28px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Login Responsive */
@media (max-width: 768px) {
  .login-screen { flex-direction: column; }
  .login-left { width: 100%; min-height: 220px; padding: 24px; }
  .login-left-inner { gap: 20px; }
  .login-illustration { display: none; }
  .login-right { padding: 24px; }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #ffffff;
  border: 1px solid var(--bg-card-border);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg-card-border);
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Print View Formatting - Relatórios Premium */
@media print {
  @page {
    margin: 1cm;
    size: A4 portrait;
  }
  
  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11pt !important;
    font-family: 'Inter', Arial, sans-serif !important;
  }
  
  /* Esconder UI do Sistema */
  .sidebar, .header-top, .btn, .no-print, .toast-container, .modal, .dashboard-cards, .search-box {
    display: none !important;
  }
  
  /* Transformar Main Content num documento A4 */
  .main-content {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow: visible !important;
    box-shadow: none !important;
    border: none !important;
  }
  
  /* Resetar Cartões para Blocos Limpos */
  .card, .tab-section {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin-bottom: 20px !important;
  }
  
  /* Injetar um Cabeçalho Oficial antes do container principal */
  .main-content::before {
    content: "SISTEMA DE PRÉ-PESAGEM - PADARIA E CONFEITARIA\A Documento Auxiliar Oficial";
    white-space: pre-wrap;
    display: block;
    text-align: center;
    font-size: 14pt;
    font-weight: bold;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
    color: #000;
  }
  
  /* Estilização Premium para Tabelas */
  table, .data-table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin-bottom: 20px !important;
    page-break-inside: auto;
  }
  
  tr {
    page-break-inside: avoid;
    page-break-after: auto;
  }
  
  thead {
    display: table-header-group;
  }
  
  th {
    background-color: #f1f5f9 !important;
    color: #000 !important;
    font-weight: bold !important;
    border: 1px solid #000 !important;
    padding: 8px !important;
    text-align: left !important;
  }
  
  td {
    border: 1px solid #475569 !important;
    padding: 6px !important;
    color: #000 !important;
  }
  
  h1, h2, h3 {
    color: #000 !important;
    page-break-after: avoid;
  }
  
  /* Forçar Badge / Chips a terem borda ao invés de cor de fundo grossa */
  .badge {
    border: 1px solid #000 !important;
    background: transparent !important;
    color: #000 !important;
  }
}

/* ============================================================
   MOBILE RESPONSIVENESS (Media Queries)
   ============================================================ */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 99;
}

#btn-mobile-menu {
    display: none;
    position: fixed;
    top: 16px;
    left: 16px;
    z-index: 98; /* Abaixo da sidebar, acima do conteudo */
    background: var(--bg-card);
    border: 1px solid var(--bg-card-border);
    color: var(--text-main);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    transition: all 0.2s;
}

#btn-mobile-menu:hover {
    background: var(--accent-primary);
    color: #fff;
}

@media (max-width: 900px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-section > div[style*="grid-template-columns: 2fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
    
    .tab-section > div[style*="grid-template-columns: 3fr 2fr"] {
        grid-template-columns: 1fr !important;
    }
    
    #tab-relatorios .card > div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    #btn-mobile-menu {
        display: block;
    }
    
    .sidebar {
        position: fixed;
        left: -280px;
        top: 0;
        height: 100vh;
        transition: left 0.3s ease;
        z-index: 100;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
    }
    
    .sidebar.open {
        left: 0;
    }
    
    .sidebar-overlay.open {
        display: block;
    }
    
    .main-content {
        padding: 76px 16px 24px 16px; /* Espaço pro botão mobile no topo */
    }
    
    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .header-top .page-title h1 {
        font-size: 1.4rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    .form-row .form-group {
        width: 100%;
    }
    
    .modal-content {
        width: 95%;
        margin: 10px;
        padding: 20px;
    }

    /* Tabelas responsivas (com scroll horizontal garantido) */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Tabelas em formato de Card para Mobile (Inventário) */
    .mobile-card-table thead {
        display: none;
    }
    .mobile-card-table tr {
        display: block;
        margin-bottom: 12px;
        border: 1px solid var(--bg-card-border);
        border-radius: var(--radius-sm);
        padding: 8px;
        background: #fff;
        box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }
    .mobile-card-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: none;
        padding: 6px 0;
        text-align: right !important;
    }
    .mobile-card-table td.hide-mobile {
        display: none;
    }
    .mobile-card-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--text-muted);
        text-align: left;
        margin-right: 15px;
        flex-shrink: 0;
    }
    .mobile-card-table td input {
        width: 100px;
    }

    /* Gráfico no dashboard */
    #chart-top-produtos, #chart-rel-status {
        width: 100% !important;
        height: auto !important;
    }

    /* Dropzone padding no celular */
    .dropzone {
        padding: 20px;
    }
}
