/* Note input shown when admins set a manual block — survives via the
 * `note` column on calendar_overrides. Sized to fit ~2 short lines. */
.fleet-calendar-note-field {
  display: block;
  margin: 0.6rem 0 0.65rem;
}

.fleet-calendar-note-field > span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.fleet-calendar-note-input {
  width: 100%;
  resize: vertical;
  min-height: 2.4em;
  padding: 0.45rem 0.6rem;
  font-family: inherit;
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.fleet-calendar-note-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18);
}
