.week-dropdown {
  position: relative;
  display: inline-block;
}

.plus-button {
  background-color: #e4e6eb;
  color: #323c4c;
  width: 44px;
  height: 44px;
  font-size: 20px;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.button-bg{
  color: #323c4c;
  background-color: #e4e6eb !important;
}
.button-bg:hover{
    color: #4a5568;
}

.plus-button:hover {
  color: #4a5568;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
  z-index: 1;
  border-radius: 6px;
  margin-top: 5px;
}

.dropdown-content button {
  width: 100%;
  background: none;
  border: none;
  color: #4a5568;
  padding: 12px 16px;
  text-align: left;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dropdown-content button:hover {
  background-color: rgb(31 41 55 / var(--tw-bg-opacity));
  border-radius: 6px;
  color: #fff
}
.week-form{
    right: -10px;
}

.show {
  display: block;
}