body {
    font-family: 'Inter', sans-serif;
    background-color: #f1f5f9;
}
.modal { display: none; z-index: 40; }
.modal.active { display: flex; }
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #a3a3a3; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #737373; }
.autocomplete-suggestions {
    border: 1px solid #ddd; max-height: 150px; overflow-y: auto;
    position: absolute; background-color: white; z-index: 1000;
    width: calc(100% - 2px); top: 100%; left: 0;
}
.autocomplete-suggestion { padding: 8px; cursor: pointer; }
.autocomplete-suggestion:hover { background-color: #f0f0f0; }
.nav-link { transition: all 0.2s ease-in-out; }
.nav-link.active { background-color: #0d9488; color: white; }
.table-auto th, .table-auto td { text-align: left; padding: 12px 16px; }
.table-auto tbody tr:nth-child(even) { background-color: #f8fafc; }
.hidden { display: none; }

/* Layout principal - removendo espaçamento lateral */
.main-content {
    margin-left: 0;
}

/* Melhorias responsivas */
@media (max-width: 768px) {
    .sidebar { 
        width: 100%; 
        position: fixed; 
        z-index: 1000; 
        transform: translateX(-100%); 
        transition: transform 0.3s ease; 
    }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .mobile-menu-btn { display: block; }
}

@media (min-width: 769px) {
    .mobile-menu-btn { display: none; }
    .main-content { 
        margin-left: 256px; /* 16rem = 256px (largura da sidebar) */
    }
}

/* Estilos para impressão de orçamentos */
@media print {
    .no-print { display: none !important; }
    .print-only { display: block !important; }
    body { background: white; }
    .sidebar { display: none; }
    .main-content { margin-left: 0; }
}

.print-only { display: none; }

/* Animações */
.fade-in {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Loading screen */
#loadingScreen {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

