/* Admin Dashboard */
.dashHeader {
  margin-bottom: 2rem;
}

.dashTitle {
  margin: 0 0 4px 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1d1d1f;
  letter-spacing: -0.3px;
}

.dashDesc {
  margin: 0;
  color: #6e6e73;
  font-size: 0.9rem;
}

/* Navigation group (like iOS Settings sections) */
.dashGroup {
  background: #ffffff;
  border: 1px solid #e5e5e7;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.dashNavRow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f0f0f2;
  transition: background 0.1s;
  min-height: 60px;
}

.dashNavRow:last-child {
  border-bottom: none;
}

.dashNavRow:hover {
  background: #f5f5f7;
}

.dashNavIcon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.dashNavText {
  flex: 1;
  min-width: 0;
}

.dashNavTitle {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 2px;
}

.dashNavDesc {
  font-size: 0.8rem;
  color: #6e6e73;
}

.dashNavChevron {
  font-size: 0.7rem;
  color: #c7c7cc;
  flex-shrink: 0;
}

/* Danger section */
.dashDangerSection {
  margin-top: 2rem;
}

.dashDangerLabel {
  font-size: 0.78rem;
  font-weight: 600;
  color: #ff3b30;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  padding-left: 4px;
}

.dashDangerRow {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  min-height: 60px;
}

.dashDangerBtn {
  flex-shrink: 0;
  padding: 7px 14px;
  background: #fff;
  color: #ff3b30;
  border: 1px solid #ff3b30;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.1s;
}

.dashDangerBtn:hover {
  background: #fff1f0;
}

/* Modal buttons (reused from old design) */
.adminDashModalP {
  margin: 0 0 1rem;
  color: #1d1d1f;
  line-height: 1.7;
}

.adminDashModalWarn {
  margin: 0 0 1rem;
  color: #ff3b30;
  font-weight: 700;
}

.adminDashModalActions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.adminDashModalCancelBtn {
  padding: 0.7rem 1.1rem;
  background: #ffffff;
  color: #1d1d1f;
  border: 1px solid #d2d2d7;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.9rem;
}

.adminDashModalSubmitBtn {
  padding: 0.7rem 1.1rem;
  background: #ff3b30;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: not-allowed;
  opacity: 0.5;
}
