/* V24 — weekly approval and locking workflow */

.week-head-actions {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.week-approve-button {
  min-height: 46px;
  border: 0;
  border-radius: 12px;
  padding: 11px 18px;
  color: #fff;
  background: var(--accent);
  box-shadow: 0 10px 24px rgba(142, 24, 35, .18);
  cursor: pointer;
  font-size: 15px;
  font-weight: 800;
}

.week-approve-button:hover {
  filter: brightness(.94);
}

.week-approve-button:focus-visible {
  outline: 3px solid rgba(165, 32, 43, .2);
  outline-offset: 3px;
}

.week-missing-pill,
.week-approved-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 800;
}

.week-missing-pill {
  color: #825300;
  border: 1px solid rgba(184, 119, 0, .24);
  background: rgba(255, 195, 77, .18);
}

.week-approved-pill {
  color: #176c4b;
  border: 1px solid rgba(23, 108, 75, .22);
  background: rgba(41, 162, 115, .13);
}

.closed-week-notice {
  max-width: 760px;
  margin: 0 auto 20px !important;
  text-align: center;
  font-size: 15px !important;
  font-weight: 800;
}

.side-user > div > strong::after {
  content: "V24";
}

@media (max-width: 840px) {
  .week-head-actions {
    flex-direction: column;
  }

  .week-approve-button,
  .week-missing-pill,
  .week-approved-pill {
    width: 100%;
  }
}
