.nav-right {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.uren {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 4rem;
}

.uren-kicker {
  margin: 0 0 0.5rem;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.uren-title {
  margin: 0 0 0.6rem;
  max-width: none;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  opacity: 1;
  transform: none;
}

.uren-lede {
  margin: 0 0 1.75rem;
  color: var(--muted);
  max-width: 40ch;
  line-height: 1.5;
}

.uren-flash,
.uren-error {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 500;
}

.uren-flash {
  background: rgba(200, 240, 130, 0.15);
  color: var(--accent);
}

.uren-error {
  background: rgba(220, 80, 80, 0.15);
  color: #ffb4b4;
}

.uren-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 1.5rem;
}

.uren-field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.uren-field--full {
  grid-column: 1 / -1;
}

.uren-field span {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}

.uren-field em {
  font-style: normal;
  font-weight: 400;
  color: var(--muted);
}

.uren-field input {
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
}

.uren-field input:focus {
  outline: none;
  border-color: rgba(200, 240, 130, 0.55);
  box-shadow: 0 0 0 3px rgba(200, 240, 130, 0.15);
}

.uren-submit {
  grid-column: 1 / -1;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 0.25rem;
}

.uren-totals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.uren-totals div {
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(200, 240, 130, 0.06);
}

.uren-totals strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.uren-totals span {
  color: var(--muted);
  font-size: 0.92rem;
}

.uren-list h2 {
  margin: 0 0 0.85rem;
  max-width: none;
  font-size: 1.15rem;
  opacity: 1;
  transform: none;
}

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

.uren-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.uren-list li {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.uren-row-date {
  font-weight: 650;
  margin-bottom: 0.35rem;
}

.uren-row-hours {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.uren-row-note {
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .uren-form {
    grid-template-columns: 1fr;
  }
  .uren-totals {
    grid-template-columns: 1fr;
  }
}
