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, .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;
  background-color: rgba(228, 228, 228, 0.504);
}

.button-menu {
  height: 150px;
  width: 150px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.button-menu:hover {
  transform: scale(1.2); /* Aumenta o botão ao passar o mouse */
}

/* Estilos para filtros organizados */
.filtros-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 15px;
  border-left: 4px solid #007bff;
}

.filtros-section h6 {
  color: #495057;
  font-weight: 600;
  margin-bottom: 15px;
}

.filtros-section .form-label {
  font-weight: 500;
  color: #495057;
  font-size: 0.9rem;
}

.filtros-section .form-control,
.filtros-section .form-select {
  border-radius: 6px;
  border: 1px solid #ced4da;
  transition: all 0.3s ease;
}

.filtros-section .form-control:focus,
.filtros-section .form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-check-switch {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #e9ecef;
}

.form-check-switch .form-check-input:checked {
  background-color: #007bff;
  border-color: #007bff;
}

/* Melhorias para os botões de ação */
.acoes-section {
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  border-radius: 8px;
  padding: 15px;
  border-left: 4px solid #2196f3;
}

.acoes-section .btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.acoes-section .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
