/* Variables CSS */
:root {
  --secondary-color: #f5f7fa;
  --text-color: #333;
  --light-text: #666;
  --border-color: #e0e0e0;
  --card-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --border-radius: 0.5rem;
}

.filters-panel {
  width: 300px;
  flex-shrink: 0;
  background-color: var(--Light-Brown);
  padding: var(--spacing-lg);
  border-radius: var(--border-radius);
  position: sticky;
  top: calc(var(--height-header) + 20px);
  height: fit-content;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
}

.title-label{
  font: var(--font-h2);
}

.filter-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
  margin-top:20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.filter-group label {
  font-weight: 600;
  color: var(--text-color);
  font-size: 0.9rem;
}

.form-control {
  padding: var(--spacing-sm) var(--spacing-md);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--Primary-Green);
  box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-control:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.filter-actions {
  display: flex;
  gap: 10px;
  margin-top: var(--spacing-md);
}