/* Mantém os rótulos e os valores do resumo do calendário legíveis. */
.calendar-selection {
  grid-template-columns: minmax(0, 1fr) 1.5rem minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 1rem !important;
  min-height: 4.5rem;
  padding: 1.125rem 0 0.25rem !important;
}

.calendar-selection > span {
  display: flex !important;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  overflow-wrap: anywhere;
  font-size: 1rem !important;
  line-height: 1.3;
}

.calendar-selection > span > small {
  display: block;
  margin: 0;
  font-size: 0.6875rem !important;
  line-height: 1;
  letter-spacing: 0.04em;
}

.calendar-selection > b {
  align-self: center;
  margin-top: 0.75rem;
  line-height: 1;
}

@media (max-width: 30rem) {
  .calendar-selection {
    column-gap: 0.625rem !important;
  }

  .calendar-selection > span {
    font-size: 0.875rem !important;
  }
}

