/* Plain Chalk — working-hours page. Everything structural comes from the
   shared stylesheet; this file only styles the picker and keeps the two
   generated tables readable on a phone. */

.hours-picker {
  background: var(--paper, var(--ground));
  border: 1px solid var(--rule, rgba(30, 42, 43,.12));
  border-radius: 14px;
  padding: 1.25rem 1.5rem;
  max-width: 36rem;
  margin: 0 0 1rem;
}

.hours-picker label {
  display: block;
  font-weight: 700;
  margin: 0 0 .5rem;
}

.hours-picker select {
  width: 100%;
  max-width: 22rem;
  min-height: 44px;
  padding: .6rem .75rem;
  border: 1.5px solid var(--rule, rgba(30, 42, 43,.15));
  border-radius: 10px;
  background: rgba(255,255,255,.6);
  color: var(--ink);
  font: inherit;
}

.hours-picker select:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 2px;
  border-color: var(--accent);
}
