.filter-dropdown {
  min-width: 800px;
  padding: 20px;
}

.dropdown-toggle {
  background-color: transparent !important;
  border-color: var(--progress-form-color); /* Cor da borda */
  color: var(--main-font-color); /* Cor do texto */
}

.calendar-container {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.calendar-column {
  width: 45%;
}

.sidebar-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.option-button {
  font-weight: bold;
  padding: 4px 8px;
  background-color: transparent;
  border: none;
  text-align: left;
  color: var(--main-font-color);
  font-size: 0.9rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.option-button:hover {
  background-color: var(--mid-gray);
  border-radius: 4px;
  color: var(--white-color); /* Cor do texto ao passar o mouse */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

.calendar-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.month-circle {
  width: 25px;
  height: 25px;
  background-color: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 50%;
  display: inline-block;
}

.month-year {
  display: flex;
  gap: 4px;
  padding: 4px 8px;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.month {
  font: var(--font-open-sans);
  font-weight: bold;
  font-size: 19px;
  color: var(--main-font-color);
}

.year {
  font: var(--font-open-sans);
  font-weight: bold;
  font-size: 19px;
  color: var(--main-font-color);
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-weight: bold;
  color: var(--mid-gray);
  margin-bottom: 5px;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.calendar .day {
  padding: 10px;
  border-radius: 5px;
  background-color: #f1f1f1;
  transition: background-color 0.3s;
}

.calendar .day:hover {
  background-color: #e0e0e0;
  cursor: pointer;
}

.day.selected {
  background-color: #007bff;
  color: #fff;
}

.dropdown-menu-custom {
  max-height: 500px;
  padding: 15px;
}
