/* FILTROS */
.filters {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.filters h3 {
  margin-bottom: 20px;
  color: #076fde;
  font-size: 1.3em;
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
}

.filter-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: #555;
  font-size: 0.9em;
}

.filter-group select, 
.filter-group input {
  padding: 10px;
  border: 2px solid #e1e8ed;
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s;
}

.filter-group select:focus, 
.filter-group input:focus {
  outline: none;
  border-color: #076fde;
}

.filter-actions-unified {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.filter-actions-unified .btn {
  flex-shrink: 0;
}

/* BOTÕES */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-success {
  background: #28a745;
  color: white;
}

.btn-success:hover {
  background: #059c27;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

.btn-primary {
  background: #076fde;
  color: white;
}

.btn-primary:hover {
  background: #072ede;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(7, 111, 222, 0.4);
}

.btn-secondary {
  background: #e1e8ed;
  color: #555;
}

.btn-secondary:hover {
  background: #d1d8dd;
}

.btn-atalho {
  margin-left: auto;
}