body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

/* Animação suave de entrada */
.fade-in { animation: fadeIn 0.3s ease-in-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Cores específicas da marca Freiplas */
.bg-freiplas-dark { background-color: #1a202c; }

/* Timeline dos detalhes do pedido */
.timeline-item { position: relative; padding-left: 20px; border-left: 2px solid #e2e8f0; padding-bottom: 15px; }
.timeline-item::before { content: ''; position: absolute; left: -6px; top: 0; width: 10px; height: 10px; border-radius: 50%; background: #3b82f6; }
.timeline-item:last-child { border-left: transparent; }

/* Ajuste de scrollbar para tabelas */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #cbd5e0; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #a0aec0; }