/**
 * Week Picker Styles
 */

.week-picker-container {
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.week-picker-container button {
  transition: all 0.2s ease;
}

.week-picker-container button:hover {
  opacity: 0.7;
}

#weekPickerInput {
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  background-color: white;
  min-width: 150px;
}

#weekPickerInput:hover {
  border-color: #00a085;
  box-shadow: 0 2px 4px rgba(0, 160, 133, 0.1);
}

#weekPickerInput:focus {
  outline: none;
  border-color: #00a085;
  box-shadow: 0 0 0 3px rgba(0, 160, 133, 0.1);
}

/* Zentriere die Calendar-Wrapper */
#week-picker-wrapper {
  min-width: 300px;
  max-width: 400px;
}
