/* public/css/style.css */

/* 1. Importar Fonte (Opcional - Inter é ótima para UI moderna) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* 2. Configurações Base */
body {
    font-family: 'Inter', sans-serif;
    background-color: #F3F4F6; /* Fallback */
    color: #1F2937;            /* Fallback */
    -webkit-font-smoothing: antialiased;
}

/* 3. Utilitários de Scrollbar (Esconder mas manter funcional) */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* 4. Inputs de Formulário (Padronização) */
/* Remove o estilo padrão feio do browser em alguns inputs */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* 5. Customização da Paginação do Laravel (Modo Claro) */
nav[role="navigation"] span,
nav[role="navigation"] a {
    background-color: #FFFFFF !important;
    border-color: #E5E7EB !important; /* Cinza claro */
    color: #374151 !important;        /* Cinza escuro */
}

nav[role="navigation"] span[aria-current="page"] > span {
    background-color: #FF6600 !important;
    color: white !important;
    border-color: #FF6600 !important;
}