html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .button:focus,
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 120, 215, 0.3) !important;
    outline: none !important;
}

/* Cantos arredondados globais */
.button, 
input, 
select, 
textarea, 
.input, 
.select, 
.textarea,
.card {
    border-radius: 8px !important;
}

/* Espaçamento de ícones em botões */
.button [class*='mif-'] + span,
.button span + [class*='mif-'] {
    margin-left: 8px;
}

.button [class*='mr-2'] {
    margin-right: 0.5rem !important;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

/* Prevenir scroll temporário e cliques múltiplos */
.navview-content {
  overflow-y: auto !important;
  overflow-x: hidden !important;
  -webkit-overflow-scrolling: touch;
}

/* Prevenir seleção de texto ao clicar em botões */
button, .button {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* Garantir que botões não causem scroll ao clicar */
button:active, .button:active {
  transform: none !important;
}

/* Estabilizar scroll em tabelas */
.table-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}