/* Styles for filter controls */
.filter-controls {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-controls form {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

.filter-controls label {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.filter-controls select {
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-color: white;
  font-size: 14px;
  min-width: 120px;
}

.filter-controls select:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.view-button {
  background-color: #2563eb;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.view-button:hover {
  background-color: #1d4ed8;
}

.view-button:active {
  background-color: #1e40af;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .filter-controls form {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Styles for charts section */
.section-title {
  grid-column: 1 / -1;
  margin: 20px 0 10px 0;
  color: #333;
  font-size: 1.3rem;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 10px;
  font-weight: 600;
}

.charts-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.chart-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 15px;
  height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.chart-title {
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #333;
  font-size: 1rem;
}

.full-width {
  grid-column: 1 / -1;
  height: 350px;
}
