/* Reusable component styles — transcribed from the prototype's inline styles. */

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  border: none;
  border-radius: var(--radius-full);
  font-size: var(--text-body);
  font-weight: 700;
  cursor: pointer;
}

.btn-control {
  padding: 16px 28px;
  background: var(--control);
  color: var(--controltext);
  font-size: 17px;
}

.btn-outline {
  padding: 16px 28px;
  background: var(--surface);
  color: var(--text2);
  border: 1px solid var(--sunken);
  font-size: 17px;
  font-weight: 600;
}

.btn-block {
  width: 100%;
  box-sizing: border-box;
}

.btn:disabled {
  cursor: not-allowed;
}

/* ---------- Rail (tablet/desktop nav) ---------- */
.rail__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 8px 24px;
}

.rail__brand-mark {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-1);
  background: var(--accent);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rail__brand-text {
  min-width: 0;
}

.rail__brand-title {
  font-size: var(--text-body);
  font-weight: 700;
  color: var(--text);
  white-space: nowrap;
}

.rail__brand-meta {
  font-size: var(--text-mono);
  font-family: var(--font-family-mono);
  color: var(--text3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.rail__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rail__nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius-2);
  border: none;
  cursor: pointer;
  background: transparent;
  text-align: left;
  position: relative;
}

.rail__nav-item--active {
  background: color-mix(in oklab, var(--accent) 10%, transparent);
}

.rail__nav-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rail__nav-label {
  font-size: var(--text-body);
  font-weight: 600;
  white-space: nowrap;
}

.rail__nav-dot {
  width: 5px;
  height: 5px;
  border-radius: var(--radius-full);
  background: var(--accent);
  margin-left: auto;
  flex-shrink: 0;
}

.rail__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rail__timer-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius-2);
  border: 1px solid var(--sunken);
  background: var(--raised);
  cursor: pointer;
  text-align: left;
}

.rail__timer-label {
  font-size: var(--text-mono);
  font-weight: 600;
  font-family: var(--font-family-mono);
  color: var(--text);
  white-space: nowrap;
}

.rail__theme-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border-radius: var(--radius-2);
  border: none;
  background: var(--sunken);
  cursor: pointer;
  text-align: left;
}

.rail__theme-label {
  font-size: var(--text-mono);
  font-weight: 600;
  color: var(--text2);
  white-space: nowrap;
}

/* ---------- Tab bar (phone nav) ---------- */
.tab-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px 14px;
  cursor: pointer;
}

.tab-item__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-item__label {
  font-size: var(--text-kicker);
  font-weight: 600;
}

.tab-item__dot {
  width: 4px;
  height: 4px;
  border-radius: var(--radius-full);
}

/* ---------- Status bar ---------- */
.status-bar__content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--sunken);
  padding: 14px 20px;
  box-sizing: border-box;
}

.status-bar__hairline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--sunken);
  overflow: hidden;
}

.status-bar__hairline-fill {
  height: 100%;
  background: var(--accent);
  transition: width 0.3s;
}

.status-bar__icon-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-2);
  background: var(--sunken);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
}

.status-bar__info {
  flex: 1;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  min-width: 0;
}

.status-bar__title {
  font-size: var(--text-section);
  font-weight: 600;
  color: var(--text);
}

.status-bar__meta {
  font-size: var(--text-mono);
  font-family: var(--font-family-mono);
  color: var(--text2);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.status-bar__pill-btn {
  height: 44px;
  padding: 0 20px;
  border-radius: var(--radius-full);
  border: none;
  font-weight: 600;
  font-size: var(--text-body);
  cursor: pointer;
  flex-shrink: 0;
}

.status-bar__pill-btn--back {
  background: var(--sunken);
  color: var(--text2);
  padding: 0 18px;
}

.status-bar__pill-btn--next {
  background: var(--control);
  color: var(--controltext);
}

@media (max-width: 759px) {
  .status-bar__pill-btn--back {
    display: none;
  }
}

/* ---------- Kicker / section label ---------- */
.kicker {
  font-size: var(--text-kicker);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text3);
}

/* ---------- Roster pills & player chips ---------- */
.roster-row {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.roster-pill {
  flex-shrink: 0;
  padding: 10px 16px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 116px;
  border: 1px solid var(--sunken);
  background: var(--raised);
}

.roster-pill--selected {
  border-color: var(--accent);
  background: color-mix(in oklab, var(--accent) 12%, var(--raised));
}

.roster-pill__name {
  font-size: var(--text-mono);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.roster-pill--selected .roster-pill__name {
  color: var(--accent);
}

.roster-pill__count {
  font-size: var(--text-mono);
  font-family: var(--font-family-mono);
  color: var(--text3);
  margin-top: 2px;
}

.roster-pill--new {
  padding: 10px 18px;
  border: 1px dashed var(--text3);
  background: transparent;
  color: var(--text2);
  font-size: var(--text-body);
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}

.player-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 16px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--sunken);
}

.player-chip__name {
  font-size: var(--text-body);
  color: var(--text);
}

.player-chip__remove {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: var(--sunken);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

/* ---------- Text inputs ---------- */
.field {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border-radius: var(--radius-2);
  border: 1px solid var(--sunken);
  background: var(--raised);
  font-size: var(--text-body);
  outline: none;
}

.field--compact {
  padding: 12px 14px;
  border-radius: var(--radius-1);
}

/* ---------- Segmented control ---------- */
.segmented {
  display: flex;
  background: var(--sunken);
  border-radius: var(--radius-2);
  padding: 3px;
}

.segmented__item {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 11px;
  font-size: var(--text-body);
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--text2);
}

.segmented__item--sm {
  padding: 10px;
  font-size: 14px;
}

.segmented__item--active {
  background: var(--raised);
  color: var(--text);
  box-shadow: var(--low);
}

/* ---------- Stat card (Courts / Rounds) ---------- */
.stat-card {
  flex: 1;
  background: var(--surface);
  border-radius: var(--radius-2);
  padding: 14px;
  box-sizing: border-box;
}

.stat-card__label {
  font-size: var(--text-label);
  color: var(--text2);
  font-weight: 600;
  margin-bottom: 8px;
}

.stat-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ---------- Stepper buttons ---------- */
.stepper-btn {
  border-radius: var(--radius-full);
  border: none;
  background: var(--raised);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  flex-shrink: 0;
}

.stepper-btn--md {
  width: 36px;
  height: 36px;
  font-size: 20px;
}

.stepper-btn--sm {
  width: 30px;
  height: 30px;
  font-size: 16px;
}

.stepper-btn--court {
  width: 32px;
  height: 32px;
  font-size: 17px;
  background: var(--sunken);
}

.stepper-value {
  font-family: var(--font-family-mono);
  font-weight: 700;
  text-align: center;
}

/* ---------- Toggle switch ---------- */
.toggle {
  width: 44px;
  height: 26px;
  border-radius: var(--radius-full);
  position: relative;
  border: none;
  cursor: pointer;
  padding: 0;
  background: var(--sunken);
}

.toggle--on {
  background: var(--accent);
}

.toggle__knob {
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background: #fff;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: left 0.15s;
}

.toggle--on .toggle__knob {
  left: 21px;
}

/* ---------- Rules card ---------- */
.rules-card {
  background: var(--surface);
  border-radius: var(--radius-3);
  padding: 16px;
  box-shadow: var(--low);
  box-sizing: border-box;
}

.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.setting-row__label {
  font-size: var(--text-body);
}

.setting-subrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-left: 12px;
}

.setting-subrow__label {
  font-size: var(--text-label);
  color: var(--text2);
}

/* ---------- Court card (round view) ---------- */
.court-card {
  border-radius: var(--radius-3);
  padding: 16px;
  box-sizing: border-box;
  box-shadow: var(--low);
  background: var(--raised);
}

.court-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.court-card__kicker {
  font-size: var(--text-mono);
  font-family: var(--font-family-mono);
  color: var(--text3);
}

.court-card__status {
  font-size: var(--text-kicker);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.court-card__team-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.court-card__team-row--last {
  margin-bottom: 14px;
}

.court-card__team-name {
  font-size: var(--text-body);
  font-weight: 600;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.court-card__score {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.court-card__score-value {
  font-size: var(--text-subtitle);
  font-weight: 700;
  font-family: var(--font-family-mono);
  min-width: 26px;
  text-align: center;
}

.court-card__complete-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
  background: var(--sunken);
}

.court-card__complete-btn--done {
  background: var(--success);
}

.court-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
}

@media (min-width: 760px) and (max-width: 1179px) {
  .court-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
  .court-grid { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
}

/* ---------- Sitting out ---------- */
.sitting-out {
  background: var(--surface);
  border-radius: var(--radius-2);
  padding: 14px;
  margin-top: 12px;
  box-sizing: border-box;
}

.sitting-out__label {
  font-size: var(--text-label);
  font-weight: 600;
  color: var(--text2);
  margin-bottom: 4px;
}

.sitting-out__names {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  color: var(--text3);
}

/* ---------- Timer CTA (phone round view) ---------- */
.timer-cta {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border-radius: var(--radius-2);
  padding: 14px;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
  margin-top: 12px;
}

.timer-cta__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--sunken);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.timer-cta__label {
  font-size: var(--text-body);
  font-weight: 600;
}

/* Rail (tablet+) already carries a persistent timer chip. */
@media (min-width: 760px) {
  .timer-cta {
    display: none;
  }
}

/* ---------- Round row (Rounds overview) ---------- */
.round-list {
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr;
}

@media (min-width: 1180px) {
  .round-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.round-row {
  border-radius: var(--radius-3);
  overflow: hidden;
  box-shadow: var(--low);
  box-sizing: border-box;
  background: var(--surface);
}

.round-row__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
}

.round-row__thumb {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-3);
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--raised);
}

.round-row__thumb-num {
  font-size: var(--text-body);
  font-weight: 700;
  font-family: var(--font-family-mono);
}

.round-row__main {
  flex: 1;
  min-width: 0;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.round-row__title-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.round-row__title {
  font-size: var(--text-body);
  font-weight: 600;
}

.round-row__state {
  font-size: var(--text-kicker);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.round-row__meta {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  color: var(--text3);
  margin-top: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.round-row__jump {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: none;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: var(--sunken);
  padding: 0;
}

.round-row__hairline {
  height: 2px;
  background: var(--sunken);
}

.round-row__hairline-fill {
  height: 100%;
  transition: width 0.3s;
}

.round-row__games {
  padding: 12px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.round-row__game {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-2);
  background: var(--sunken);
}

.round-row__game-court {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  color: var(--text3);
  flex-shrink: 0;
}

.round-row__game-label {
  flex: 1;
  min-width: 0;
  font-size: var(--text-body);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.round-row__game-score {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  font-weight: 600;
  flex-shrink: 0;
}

.round-row__sitting {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  color: var(--text3);
  padding: 0 12px;
}

/* ---------- Standings row ---------- */
.standings-list {
  display: grid;
  gap: 6px;
  grid-template-columns: 1fr;
}

@media (min-width: 1180px) {
  .standings-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.standings-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: var(--radius-2);
  box-sizing: border-box;
  background: var(--surface);
}

.standings-row--sidebar {
  padding: 10px 12px;
  gap: 12px;
}

.standings-row__badge {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--sunken);
}

.standings-row__badge--sidebar {
  width: 26px;
  height: 26px;
}

.standings-row__badge-text {
  font-size: var(--text-label);
  font-weight: 700;
  font-family: var(--font-family-mono);
  color: var(--text2);
}

.standings-row__name {
  flex: 1;
  font-size: var(--text-body);
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.standings-row__stats {
  text-align: right;
  flex-shrink: 0;
  min-width: 64px;
  white-space: nowrap;
}

.standings-row__points {
  font-size: var(--text-body);
  font-weight: 700;
  font-family: var(--font-family-mono);
  white-space: nowrap;
}

.standings-row__pfpa {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  color: var(--text3);
  white-space: nowrap;
}

/* ---------- Sidebar (desktop) ---------- */
.sidebar__section-title {
  font-size: var(--text-kicker);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
}

.sidebar__standings {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 24px;
}

.sidebar__upnext {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar__game-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-2);
  background: var(--raised);
}

.sidebar__game-court {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  color: var(--text3);
  flex-shrink: 0;
}

.sidebar__game-label {
  flex: 1;
  min-width: 0;
  font-size: var(--text-body);
}

.sidebar__empty {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  color: var(--text3);
}

/* ---------- Empty state ---------- */
.empty-state {
  text-align: center;
  padding: 48px 20px;
  color: var(--text3);
  font-size: var(--text-body);
}

/* ---------- Sheet (quick edit) ---------- */
/* Phone: bottom sheet, edge to edge, rounded top corners only.
   Tablet/desktop: centered modal, rounded on all corners, max 520px wide. */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 18, 0.45);
  z-index: 40;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 0;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.18s ease;
}

.sheet-backdrop--open {
  opacity: 1;
}

.sheet {
  width: 100%;
  max-width: 100%;
  max-height: 80%;
  background: var(--raised);
  box-shadow: var(--high);
  padding: 20px 20px 28px;
  box-sizing: border-box;
  overflow-y: auto;
  border-radius: var(--radius-4) var(--radius-4) 0 0;
  transform: translateY(16px);
  opacity: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sheet-backdrop--open .sheet {
  transform: translateY(0);
  opacity: 1;
}

.sheet__handle {
  width: 36px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--sunken);
  margin: 0 auto 16px;
}

@media (min-width: 760px) {
  .sheet-backdrop {
    align-items: center;
    padding: 32px;
  }
  .sheet {
    max-width: 520px;
    max-height: 100%;
    border-radius: var(--radius-4);
    transform: translateY(0) scale(0.97);
  }
  .sheet-backdrop--open .sheet {
    transform: translateY(0) scale(1);
  }
  .sheet__handle {
    display: none;
  }
}

.sheet__title {
  font-size: var(--text-subtitle);
  font-weight: 700;
  margin-bottom: 4px;
}

.sheet__hint {
  font-size: var(--text-label);
  font-family: var(--font-family-mono);
  color: var(--text3);
  margin-bottom: 16px;
}

.qe-player-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--sunken);
}

.qe-player-row__name {
  flex: 1;
  border: none;
  background: none;
  font-size: var(--text-body);
  outline: none;
  padding: 8px 0;
  min-width: 0;
}

.qe-player-row__remove {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--sunken);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  padding: 0;
}

.qe-add-row {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

/* ---------- Timer overlay ---------- */
.timer-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Last-30s visibility mode: forced black, regardless of the active light/dark theme.
   Overriding the tokens (rather than every child rule) keeps the close/adjust/circle
   buttons and kicker text readable without duplicating each of their rules here. */
.timer-overlay--critical {
  background: #000;
  --text: #fff;
  --text2: #fff;
  --text3: #ccc;
  --surface: #1a1a1a;
  --raised: #1a1a1a;
  --sunken: #1a1a1a;
}

.timer-overlay__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.timer-overlay__kicker {
  font-size: var(--text-kicker);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text3);
  margin-bottom: 12px;
}

.timer-overlay__digits {
  font-weight: 700;
  font-family: var(--font-family-mono);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  /* Scales with viewport so it stays legible from across a court, not just up close. */
  font-size: clamp(115px, 29vw, 336px);
  color: var(--text);
}

.timer-overlay__stop-buzzer-btn {
  padding: 14px 32px;
  border-radius: var(--radius-full);
  border: none;
  background: #FFE600;
  color: #000;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 24px;
}

.timer-overlay__adjust {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.timer-overlay__adjust-btn {
  padding: 10px 18px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--surface);
  color: var(--text2);
  font-size: var(--text-label);
  font-weight: 600;
  font-family: var(--font-family-mono);
  cursor: pointer;
}

.timer-overlay__controls {
  display: flex;
  gap: 16px;
  align-items: center;
}

.timer-overlay__circle-btn {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}

.timer-overlay__play-btn {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  background: var(--accent);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
}
