/* Escopo restrito ao card de check-in existente. */
.status-tile.checkin .checkin-window {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(148, 163, 184, .14);
  margin-top: 1px;
}
.checkin-window .window-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  line-height: 1.3;
  color: var(--text-2, #cbd5e1);
}
.checkin-window .window-label svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
  color: #67d4d5;
}
.checkin-window .window-hours {
  color: var(--text-1, #f1f5f9);
  font-size: 16px;
  line-height: 1.25;
  font-weight: 750;
  letter-spacing: -.3px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.checkin-window .window-hours span {
  color: var(--text-3, #94a3b8);
  font-weight: 400;
  padding: 0 2px;
}
@media (max-width: 350px) {
  .status-tile.checkin .checkin-window { gap: 5px 6px; }
  .checkin-window .window-label { font-size: 11px; gap: 5px; }
  .checkin-window .window-hours { font-size: 15px; }
}

/* AM/PM explícito em cada horário, sem alargar demais o card. */
.checkin-window .window-hours .time-period {
  font-size: 11px;
  font-weight: 650;
  color: var(--text-2, #cbd5e1);
  letter-spacing: 0;
  padding: 0;
}
