.painel-grafico-dashboard-grafico {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0px 20px;
  background: #fff;
  border-radius: 16px;
}

.tipo-grafico-dashboard-grafico {
  flex: 1 1 300px;
  background: #f8f8f8;
  padding: 20px;
  border-radius: 12px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.03);
}

.tipo-grafico-dashboard-grafico h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 6px;
  color: #333;
}

.grafico-container-dashboard-grafico {
  flex: 2 1 500px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contador-filtros-dashboard-grafico {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #4AB0DE;
  color: white;
  font-size: 12px;
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  font-weight: bold;
}

.grafico-dashboard-grafico {
  width: 100% !important;
  height: auto !important;
  max-height: 400px;
}

.combo-tipo-grafico-dashboard-grafico,
.combo-modelo-grafico-dashboard-grafico {
  width: 60%;
  padding: 8px 10px;
  border: 1px solid var(--cinza-borda);
  border-radius: 12px;
  background-color: #f9f9f9;
  font-size: 14px;
  color: #333;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg fill='gray' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  margin-bottom: 25px;
}

.combo-tipo-grafico-dashboard-grafico:focus,
.combo-modelo-grafico-dashboard-grafico:focus {
  border-color: var(--cor-principal);
  box-shadow: 0 0 5px rgba(54, 163, 163, 0.4);
  outline: none;
}