.cleaning-day-filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid #bfd2c7;
  border-left: 5px solid #287457;
  border-radius: 13px;
  background: #f1f8f4;
  padding: 12px 14px;
}

.cleaning-day-buttons {
  display: inline-flex;
  flex-shrink: 0;
  gap: 7px;
  border-radius: 11px;
  background: #dfece5;
  padding: 4px;
}

.cleaning-day-button {
  min-width: 105px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #35584a;
  padding: 9px 14px;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.cleaning-day-button.active {
  background: #1f684c;
  color: #fff;
  box-shadow: 0 3px 10px rgba(26,84,61,.18);
}

.cleaning-day-copy {
  min-width: 0;
  text-align: right;
}

.cleaning-day-copy strong,
.cleaning-day-copy span {
  display: block;
}

.cleaning-day-copy strong {
  color: #244a3d;
}

.cleaning-day-copy span {
  margin-top: 3px;
  color: #687a72;
  font-size: .78rem;
  line-height: 1.4;
}

.cleaning-day-empty-banner {
  border: 1px dashed #aebfb6;
  border-radius: 12px;
  background: #fafcfb;
  color: #62736b;
  padding: 17px;
  text-align: center;
  font-weight: 800;
}

@media (max-width:700px) {
  .cleaning-day-filter {
    align-items: stretch;
    flex-direction: column;
  }

  .cleaning-day-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cleaning-day-button {
    min-width: 0;
  }

  .cleaning-day-copy {
    text-align: left;
  }
}
