.muted {
  opacity: .85
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.not-recorded-text {
  font-size: var(--not-recorded-font-size);
  display: inline-block
}

.badge {
  font-size: .75em;
  line-height: 1
}

.entry {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  align-items: center
}

.entry-icons {
  display: flex;
  gap: .2rem;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem
}

.entry-label {
  font-size: .75rem;
  opacity: .9
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.day-balance {
  font-weight: 400;
  font-size: .8rem
}

.saldo-positive {
  color: var(--saldo-positive)
}

.saldo-negative,
.overtime-text {
  color: var(--saldo-negative)
}

.overtime-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: baseline;
}

.overtime-summary-entry {
  font-size: 0.95rem;
  font-weight: 500;
}

.overtime-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.overtime-chart-area {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.overtime-chart-wrapper {
  position: relative;
  width: 100%;
  min-height: 260px;
  border-radius: 0.75rem;
  border: 1px solid var(--glass-border, rgba(255, 255, 255, 0.12));
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem;
}

#overtimeChart {
  width: 100%;
  height: 100%;
}

.overtime-axis-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.overtime-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
  opacity: 0.9;
}

.overtime-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.overtime-legend-swatch {
  width: 1.25rem;
  height: 0.35rem;
  border-radius: 999px;
}

.saldo {
  font-weight: 800
}

.hide {
  display: none
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000
}

.modal {
  background: var(--bg);
  color: var(--fg);
  border-radius: .75rem;
  padding: 1rem;
  width: min(520px, 92vw);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25)
}

.modal h3 {
  margin-bottom: .75rem;
  font-size: 1.2rem
}

.modal .form {
