.toolbar-copy {
  display: grid;
  gap: 12px;
}

.toolbar-copy h2 {
  margin-bottom: 0;
}

.period-summary {
  display: flex;
  align-items: center;
  min-height: var(--control-height);
}

.period-summary p {
  line-height: 1.2;
}

.refresh-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  width: min(700px, 100%);
}

.period-field {
  box-sizing: border-box;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  flex: 1 1 230px;
  height: var(--control-height);
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 0 0.55rem 0 0.75rem;
  background: #ffffff;
}

.period-field > span:first-child {
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.2;
  white-space: nowrap;
}

.period-field input[type="date"] {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  padding: 0;
  background: transparent;
}

.refresh-form button {
  height: var(--control-height);
}

@media (max-width: 760px) {
  .refresh-form {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .period-field,
  .refresh-form button {
    flex-basis: 100%;
    width: 100%;
  }
}
