:root {
  --bg: #f7f5ef;
  --bg-overlay-a: #ddeedc;
  --bg-overlay-b: #e8e1d1;
  --card: #ffffff;
  --text: #1e2a22;
  --muted: #53625a;
  --accent: #2f6c56;
  --accent-strong: #24513f;
  --danger: #b03c3c;
  --border: #d9d9cc;
  --success-bg: #e7f8ef;
  --success-text: #1d6a42;
  --weekend-bg: #f1efe4;
}

[data-theme="dark"] {
  --bg: #121613;
  --bg-overlay-a: #1f2a22;
  --bg-overlay-b: #18211d;
  --card: #1a221d;
  --text: #e8efe9;
  --muted: #a8b8ae;
  --accent: #5db28d;
  --accent-strong: #4a9a78;
  --danger: #dd7070;
  --border: #324038;
  --success-bg: #173125;
  --success-text: #9be5be;
  --weekend-bg: #202a25;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Atkinson Hyperlegible", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 12%, var(--bg-overlay-a) 0, transparent 32%),
    radial-gradient(circle at 88% 20%, var(--bg-overlay-b) 0, transparent 36%),
    var(--bg);
  min-height: 100vh;
}

.container {
  width: min(1200px, 94vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(8px);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  border-bottom: 1px solid var(--border);
  z-index: 2;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 0;
}

.brand {
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  padding: 0.5rem;
}

.page {
  padding: 1.2rem 0 2rem;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.summary-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  margin-bottom: 1rem;
}

.summary-grid.two-cols {
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.summary-card,
.day-card,
.auth-card,
.form-card,
.week-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(20, 27, 24, 0.07);
}

.summary-card {
  padding: 0.9rem;
}

.summary-card h2 {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.summary-card p {
  margin: 0.4rem 0 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.days-list {
  display: grid;
  gap: 0.75rem;
}

.days-list.dense {
  gap: 0.5rem;
}

.day-card {
  padding: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.day-card.weekend {
  background: var(--weekend-bg);
}

.day-card.compact {
  align-items: center;
}

.day-card h3 {
  margin: 0;
  font-size: 1rem;
}

.day-card p {
  margin: 0.5rem 0 0;
}

.actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.month-actions .dash-icon-btn {
  background: color-mix(in srgb, var(--text) 18%, transparent);
  border: 1px solid var(--border);
}

.month-actions .dash-icon-btn:hover {
  background: color-mix(in srgb, var(--text) 28%, transparent);
}

.month-actions .dash-icon-btn.danger-icon {
  background: color-mix(in srgb, var(--danger) 30%, transparent);
  border-color: color-mix(in srgb, var(--danger) 55%, var(--border));
}

.month-actions .dash-icon-btn.danger-icon:hover {
  background: color-mix(in srgb, var(--danger) 45%, transparent);
}

.button {
  border: 0;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 140ms ease, transform 140ms ease;
}

.button:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.button.ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.button.active {
  background: var(--accent-strong);
  color: #fff;
}

.button.compact {
  padding: 0.45rem 0.7rem;
}

.button.danger {
  background: var(--danger);
}

.inline-form {
  margin: 0;
}

.auth-card,
.form-card {
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 1rem;
}

.form-card.full-width {
  width: 100%;
  max-width: none;
}

.stack {
  display: grid;
  gap: 0.8rem;
}

.inline-grid {
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.weekday-fieldset {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.75rem;
}

.weekday-fieldset legend {
  font-weight: 700;
  padding: 0 0.25rem;
}

.weekday-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 0.45rem 0.8rem;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 500;
}

label {
  display: grid;
  gap: 0.3rem;
  font-weight: 600;
}

input,
textarea,
select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.7rem;
  font: inherit;
  background: var(--card);
  color: var(--text);
}

.nav-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.error,
.success {
  border-radius: 10px;
  padding: 0.6rem;
}

.error {
  color: #8d1f1f;
  background: #ffeaea;
  border: 1px solid #f0b8b8;
}

.success {
  color: var(--success-text);
  background: var(--success-bg);
  border: 1px solid color-mix(in srgb, var(--success-text) 40%, transparent);
}

.muted {
  color: var(--muted);
}

.positive {
  color: #1e9c5b;
}

.negative {
  color: #d05757;
}

.is-hidden {
  display: none;
}

.view-switcher {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 0.8rem;
}

.week-divider {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  align-items: center;
  border: 1px dashed var(--border);
  border-radius: 12px;
  padding: 0.55rem 0.75rem;
  background: color-mix(in srgb, var(--card) 85%, transparent);
}

.sticky-divider {
  position: sticky;
  top: 72px;
  z-index: 1;
}

.month-weeks-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
}

.week-card {
  padding: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.week-summary {
  border-top: 1px solid var(--border);
  padding-top: 0.5rem;
  font-size: 0.9rem;
}

.settings-grid {
  display: grid;
  gap: 0.8rem;
}

.vacation-list {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.6rem;
}

.vacation-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem;
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  background: color-mix(in srgb, var(--card) 92%, transparent);
}

@media (max-width: 980px) {
  .summary-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
  }

  .month-weeks-grid {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}

@media (max-width: 820px) {
  .day-card {
    flex-direction: column;
    gap: 0.8rem;
  }

  .actions {
    width: 100%;
  }

  .month-actions {
    justify-content: flex-end;
  }

  .actions .button,
  .actions form {
    width: 100%;
  }

  .actions .button {
    width: 100%;
  }

  .month-actions .dash-icon-btn,
  .month-actions form {
    width: auto;
  }

  .inline-grid {
    grid-template-columns: 1fr;
  }

  .weekday-grid {
    grid-template-columns: repeat(2, minmax(130px, 1fr));
  }

  .month-weeks-grid {
    grid-template-columns: 1fr;
  }

  .sticky-divider {
    top: 66px;
  }
}

@media (max-width: 520px) {
  .summary-grid,
  .summary-grid.two-cols {
    grid-template-columns: 1fr;
  }

  .weekday-grid {
    grid-template-columns: 1fr;
  }

  .site-header .container {
    flex-direction: column;
    align-items: stretch;
  }

  .nav {
    justify-content: space-between;
  }
}

body.app-theme {
  --bg: #2e2e2e;
  --bg-overlay-a: #2e2e2e;
  --bg-overlay-b: #2e2e2e;
  --card: #252525;
  --text: #ffffff;
  --muted: #9d9d9d;
  --accent: #3f3f3f;
  --accent-strong: #4c4c4c;
  --danger: #bc5252;
  --border: #3a3a3a;
  --success-bg: #243427;
  --success-text: #9ed7a7;
  --weekend-bg: #303030;
  background: #2e2e2e;
  color: #ffffff;
}

body.app-theme .container {
  width: min(1340px, 96vw);
}

body.app-theme .site-header {
  backdrop-filter: none;
  background: #2f2f2f;
  border-bottom: 1px solid #373737;
}

body.app-theme .site-header .container {
  gap: 24px;
  padding: 10px 0;
}

body.app-theme .app-brand {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
}

body.app-theme .app-top-actions {
  align-items: center;
  display: flex;
  gap: 26px;
  margin-left: auto;
}

body.app-theme .app-main-nav {
  align-items: center;
  display: flex;
  gap: 24px;
}

body.app-theme .app-link {
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  padding: 5px 10px;
  border-radius: 7px;
  text-decoration: none;
}

body.app-theme .app-link.active {
  background: #ffffff;
  color: #2c2c2c;
  font-weight: 700;
}

body.app-theme .app-icon-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

body.app-theme .app-icon-btn {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  min-width: 42px;
  padding: 0;
  text-decoration: none;
}

body.app-theme .app-icon-btn:hover {
  background: #3b3b3b;
}

body.app-theme .app-icon-btn .dash-icon {
  height: 30px;
  width: 30px;
}

body.app-theme .page {
  padding-top: 0.75rem;
}

body.app-theme .dashboard-page,
body.app-theme .month-page {
  padding-top: 0;
}

body.app-theme:not(.dashboard-theme) .auth-card,
body.app-theme:not(.dashboard-theme) .form-card,
body.app-theme:not(.dashboard-theme) .summary-card,
body.app-theme:not(.dashboard-theme) .day-card,
body.app-theme:not(.dashboard-theme) .week-card {
  background: #252525;
  border-color: #3a3a3a;
  box-shadow: none;
}

body.app-theme:not(.dashboard-theme) .button {
  background: #3d3d3d;
}

body.app-theme:not(.dashboard-theme) .button:hover {
  background: #4a4a4a;
}

body.app-theme:not(.dashboard-theme) .button.ghost {
  border-color: #4a4a4a;
  color: #ffffff;
}

body.app-theme:not(.dashboard-theme) input,
body.app-theme:not(.dashboard-theme) textarea,
body.app-theme:not(.dashboard-theme) select {
  background: #1f1f1f;
  border-color: #3a3a3a;
  color: #ffffff;
}

body.app-theme .month-toolbar {
  background: #242424;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto 1fr;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 8px 15px 10px;
  width: 100%;
}

body.app-theme .month-picker {
  align-items: center;
  display: flex;
  gap: 6px;
  grid-column: 2;
  justify-self: center;
}

body.app-theme .month-picker p {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin: 0;
  min-width: 280px;
  text-align: center;
}

body.app-theme .month-toolbar-actions {
  grid-column: 3;
  justify-content: flex-end;
  justify-self: end;
}

body.app-theme .month-week-columns {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body.app-theme .month-week-block {
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  overflow: hidden;
}

body.app-theme .month-week-divider {
  align-items: center;
  background: #242424;
  border-bottom: 1px solid #323232;
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(72px, auto) minmax(160px, auto) minmax(0, 1fr) auto;
  margin: 0;
  padding: 8px 15px;
}

body.app-theme .month-week-divider > strong {
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

body.app-theme .month-week-divider > span {
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

body.app-theme .month-week-divider > span:nth-of-type(2) {
  font-size: 20px;
  font-weight: 400;
  justify-self: start;
  line-height: 1.1;
  text-align: left;
}

body.app-theme .month-week-vacation-action {
  justify-self: end;
}

body.app-theme .month-days {
  display: grid;
  gap: 6px;
  padding: 8px 15px 12px;
}

body.app-theme .month-list-view {
  display: grid;
  gap: 6px;
}

body.app-theme .month-list-view > .month-week-divider {
  border-top: 1px solid #323232;
}

body.app-theme .month-page .dash-day-row {
  min-height: 50px;
}

body.app-theme .month-page .dash-day-weekend {
  background: #303030;
}

body.app-theme .month-page .dash-day-actions .dash-icon-btn {
  background: transparent;
  border-radius: 8px;
}

body.app-theme .month-page .dash-day-actions .dash-icon-btn:hover {
  background: #3a3a3a;
}

body.app-theme .month-page .dash-icon {
  height: 30px;
  width: 30px;
}

@media (max-width: 1200px) {
  body.app-theme .month-week-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.app-theme .site-header .container {
    align-items: stretch;
    flex-direction: column;
  }

  body.app-theme .app-brand {
    font-size: 20px;
    text-align: center;
  }

  body.app-theme .app-top-actions {
    justify-content: space-between;
    margin-left: 0;
    width: 100%;
  }

  body.app-theme .app-main-nav {
    gap: 20px;
  }

  body.app-theme .app-link {
    font-size: 20px;
  }

  body.app-theme .month-toolbar {
    display: flex;
    flex-direction: column;
    padding: 6px 12px 8px;
  }

  body.app-theme .month-picker {
    grid-column: auto;
    width: 100%;
  }

  body.app-theme .month-picker p {
    font-size: 20px;
    min-width: 0;
  }

  body.app-theme .month-toolbar-actions {
    grid-column: auto;
    justify-content: center;
    justify-self: auto;
    width: 100%;
  }

  body.app-theme .month-week-divider {
    gap: 4px;
    grid-template-columns: 1fr;
    padding: 8px 12px;
  }

  body.app-theme .month-week-divider > strong {
    font-size: 20px;
  }

  body.app-theme .month-week-divider > span {
    font-size: 18px;
  }

  body.app-theme .month-week-divider > span:nth-of-type(2) {
    font-size: 16px;
    justify-self: start;
    text-align: left;
  }

  body.app-theme .month-days {
    gap: 2px;
    padding: 6px 0 10px;
  }
}

body.dashboard-theme {
  background: #2e2e2e;
  color: #ffffff;
}

body.dashboard-theme .dash-icon {
  height: 30px;
  width: 30px;
}

.dash-shell {
  width: 100%;
}

.dash-topbar {
  align-items: center;
  background: #2f2f2f;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 10px 15px;
  width: 100%;
}

.dash-weekbar {
  align-items: center;
  background: #242424;
  display: grid;
  gap: 8px;
  grid-template-columns: 1fr auto 1fr;
  justify-content: space-between;
  padding: 8px 15px 10px;
  width: 100%;
}

.dash-brand {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
}

.dash-top-actions {
  align-items: center;
  display: flex;
  flex: none;
  gap: 30px;
  justify-content: flex-end;
  margin-left: auto;
}

.dash-main-nav {
  align-items: center;
  display: flex;
  gap: 25px;
}

.dash-link {
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
}

.dash-link.active {
  font-weight: 700;
}

.dash-icon-nav {
  align-items: center;
  display: flex;
  gap: 10px;
}

.dash-icon-btn {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  min-width: 42px;
  padding: 0;
  text-decoration: none;
}

.dash-icon {
  display: block;
  height: 30px;
  pointer-events: none;
  width: 30px;
}

.dash-icon-rotate-180 {
  transform: rotate(180deg);
}

.dash-icon-btn:hover {
  background: #3b3b3b;
}

.dash-weeknav {
  align-items: center;
  display: flex;
  gap: 6px;
  grid-column: 2;
  justify-content: center;
}

.dash-weeknav p {
  color: #ffffff;
  font-size: 32px;
  margin: 0;
  text-align: center;
}

.dash-week-actions {
  grid-column: 3;
  justify-content: flex-end;
  justify-self: end;
}

.status-strip {
  background: #2e2e2e;
  display: grid;
  gap: 2px;
  margin-top: 2px;
  margin-bottom: 12px;
  width: 100%;
}

.status-strip-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.status-strip-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-cell {
  align-items: center;
  background: #242424;
  color: #ffffff;
  display: inline-flex;
  font-size: 20px;
  justify-content: center;
  margin: 0;
  min-height: 46px;
  padding: 0 10px;
  position: relative;
}

.status-cell span {
  font-weight: 400;
}

.status-cell strong {
  font-weight: 800;
}

.status-cell-editable {
  padding-right: 50px;
}

.status-inline-edit {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 8px;
  width: 32px;
}

.status-inline-edit:hover {
  background: #3a3a3a;
}

.status-inline-edit-icon {
  height: 24px;
  width: 24px;
}

.dash-target-editor {
  background: #252525;
  border: 1px solid #3c3c3c;
  border-radius: 12px;
  margin: 6px 15px 12px;
  padding: 12px;
}

.dash-target-editor h2 {
  margin: 0 0 10px;
}

.dash-target-editor label {
  color: #ffffff;
}

.dash-target-editor input,
.dash-target-editor select {
  background: #1f1f1f;
  border-color: #3d3d3d;
  color: #ffffff;
}

.dash-days {
  display: grid;
  gap: 6px;
  padding: 16px 15px 0;
}

.dash-day-row {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 250px max-content 1fr;
  min-height: 52px;
  padding: 0;
}

.dash-day-weekend {
  background: transparent;
}

.dash-day-head {
  display: contents;
}

.dash-day-head h3 {
  align-items: center;
  display: flex;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  grid-column: 1;
  grid-row: 1;
  line-height: 22px;
  margin: 0;
  min-width: 0;
  padding-right: 15px;
  white-space: nowrap;
}

.dash-day-details {
  display: grid;
  gap: 2px;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: max-content max-content max-content;
  width: max-content;
}

.dash-chip {
  align-items: center;
  background: #242424;
  color: #ffffff;
  display: inline-flex;
  font-size: 18px;
  justify-content: center;
  line-height: 22px;
  min-height: 42px;
  padding: 10px;
  text-align: center;
}

.dash-chip-time {
  min-width: 164px;
}

.dash-chip-break {
  min-width: 126px;
}

.dash-chip-net {
  min-width: 124px;
}

.dash-chip-empty {
  min-width: 164px;
  opacity: 0.5;
}

.dash-chip-muted {
  color: #8f8f8f;
}

.chip-label-short,
.chip-unit-short {
  display: none;
}

.dash-day-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  grid-column: 3;
  grid-row: 1;
  justify-content: flex-end;
  justify-self: end;
}

.dash-day-actions .dash-icon-btn {
  background: transparent;
}

.dash-day-actions .dash-icon-btn:hover {
  background: #3a3a3a;
}

.dash-toggle-btn {
  align-items: center;
  background: #2a2a2a;
  border: 1px solid #4a4a4a;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  min-width: 34px;
  padding: 0 8px;
}

.dash-toggle-btn:hover {
  background: #393939;
}

.dash-toggle-btn.is-active {
  background: #574721;
  border-color: #9f8240;
  color: #f3d08f;
}

.dash-week-actions .dash-toggle-btn {
  height: 42px;
  min-width: 42px;
}

.dash-day-vacation .dash-chip {
  border: 1px solid #6b5620;
}

body.dashboard-theme .success {
  margin: 0 15px 12px;
}

@media (max-width: 1500px) {
  .dash-brand {
    font-size: 20px;
  }

  .dash-weeknav p,
  .dash-link {
    font-size: 20px;
  }

  .dash-day-head h3 {
    font-size: 18px;
  }
}

@media (max-width: 1200px) {
  .dash-brand {
    font-size: 20px;
  }

  .dash-day-row {
    grid-template-columns: 240px max-content 1fr;
  }

  .dash-day-head h3 {
    font-size: 17px;
  }

}

@media (max-width: 700px) {
  .dash-topbar {
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding: 10px 15px;
  }

  .dash-brand {
    font-size: 20px;
    text-align: center;
    width: 100%;
  }

  .dash-top-actions {
    gap: 12px;
    width: 100%;
  }

  .dash-main-nav {
    gap: 24px;
    padding-left: 10px;
  }

  .dash-link,
  .dash-weeknav p {
    font-size: 20px;
  }

  .dash-weekbar {
    display: flex;
    flex-direction: column;
    padding-top: 5px;
  }

  .dash-weeknav {
    grid-column: auto;
    width: 100%;
  }

  .dash-week-actions {
    grid-column: auto;
    justify-content: center;
    justify-self: auto;
  }

  .status-strip-cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status-strip {
    margin-bottom: 8px;
  }

  .status-cell {
    font-size: 16px;
    min-height: 42px;
  }

  .status-cell-editable {
    padding-right: 44px;
  }

  .status-inline-edit {
    height: 28px;
    right: 7px;
    width: 28px;
  }

  .status-inline-edit-icon {
    height: 20px;
    width: 20px;
  }

  .dash-days {
    gap: 2px;
    padding: 16px 0 0;
  }

  .dash-day-row {
    background: #2a2a2a;
    gap: 2px;
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 0 0 2px;
  }

  .dash-day-weekend {
    background: #303030;
  }

  .dash-day-head {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 46px;
    padding: 0 15px;
    width: 100%;
  }

  .dash-day-head h3 {
    display: block;
    font-size: 18px;
    grid-column: auto;
    grid-row: auto;
    padding-right: 10px;
  }

  .dash-day-actions {
    grid-column: auto;
    grid-row: auto;
    justify-content: flex-end;
    justify-self: auto;
  }

  .dash-day-details {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: minmax(140px, 1.5fr) minmax(84px, 0.85fr) minmax(96px, 1fr);
    width: 100%;
  }

  .dash-chip,
  .dash-chip-time,
  .dash-chip-break,
  .dash-chip-net {
    font-size: 18px;
    min-width: 0;
    padding: 8px;
  }

  .dash-chip-empty {
    grid-column: 1 / -1;
    min-width: 0;
  }

  .chip-label-long,
  .chip-unit-long {
    display: none;
  }

  .chip-label-short,
  .chip-unit-short {
    display: inline;
  }
}
