.account-new-date-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  margin: 0 0 12px;
  padding: 12px 16px;
  box-sizing: border-box;
  border: 1px solid rgba(232, 189, 84, .55);
  border-radius: 12px;
  background: rgba(232, 189, 84, .12);
  color: var(--color-header-gold, #e8bd54);
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease;
}
.account-new-date-action svg { flex: 0 0 22px; }
.account-new-date-action:hover { background: rgba(232, 189, 84, .22); border-color: var(--color-header-gold, #e8bd54); }
.account-new-date-action:focus-visible { outline: 2px solid var(--color-header-gold, #e8bd54); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { .account-new-date-action { transition: none; } }
