body, html {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f4f4f4;
}

html {
  font-size: 12px;
}

@media (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.sortable-header {
    white-space: nowrap;
}

.sortable-header .sort-marker {
    display: inline-block;
    width: 12px;
    height: 12px;
    text-align: center;
}

.filter-group {
    display: flex;
    align-items: flex-end;
}

.filter-item {
    margin-right: 10px;
}

.filter-group .form-control,
.filter-group .btn {
    height: calc(2.25rem + 2px); /* Adiciona a altura padrão do input e botão */
    line-height: 1.5;
}

.navbar-links-hidden {
    visibility: hidden; /* Oculta o elemento, mas ainda ocupa espaço no layout */
}

.nowrap {
    white-space: nowrap;
}

.grid-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    padding: 2px 8px; /* padding vertical e horizontal */
    font-size: 14px; /* tamanho de fonte ajustado, se necessário */
}

.transparent-button {
    background-color: rgba(0, 0, 0, 0.1); /* Efeito hover com leve opacidade */
    border: none; /* Remove a borda */
    color: #000; /* Cor do texto (ajuste conforme necessário) */
    cursor: pointer; /* Mantém o cursor de botão */
}