:root {
  --bg-deep: #02070c;
  --bg-blue: #041722;
  --blue-900: #062234;
  --blue-700: #083d5f;
  --aqua: #20c8df;
  --aqua-soft: rgba(32, 200, 223, 0.22);
  --white: #ffffff;
  --muted: #b6c8d3;
  --gold: #ffb44a;
  --card: rgba(2, 14, 23, 0.74);
  --stroke: rgba(64, 224, 240, 0.26);
  --danger: #ff6b6b;
  --success: #7dffbf;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  --radius: 30px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg-deep);
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 181, 71, 0.34), transparent 25%),
    radial-gradient(circle at 18% 18%, rgba(32, 200, 223, 0.18), transparent 28%),
    radial-gradient(circle at 82% 22%, rgba(16, 119, 180, 0.28), transparent 30%),
    linear-gradient(180deg, #06131d 0%, #052133 36%, #03121d 70%, #010407 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(180deg, rgba(255, 184, 75, 0.13) 0%, transparent 16%),
    repeating-linear-gradient(
      105deg,
      rgba(255, 255, 255, 0.03) 0,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px,
      transparent 74px
    );
  opacity: 0.85;
}

body::after {
  background:
    radial-gradient(circle at 20% 80%, rgba(32, 200, 223, 0.08), transparent 24%),
    radial-gradient(circle at 80% 85%, rgba(32, 200, 223, 0.08), transparent 22%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 28%);
}

a {
  color: #bff8ff;
}

.page,
.auth-page,
.admin-page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(22px, 4vw, 46px) 20px 20px;
}

.bubbles {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bubble {
  position: absolute;
  bottom: -80px;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  border: 1px solid rgba(122, 236, 255, 0.34);
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.35), rgba(32, 200, 223, 0.05) 48%, transparent 70%);
  animation: rise var(--speed) linear infinite;
  animation-delay: var(--delay);
  opacity: 0.65;
}

@keyframes rise {
  0% {
    transform: translate3d(0, 0, 0) scale(0.82);
    opacity: 0;
  }
  12% {
    opacity: 0.62;
  }
  100% {
    transform: translate3d(var(--drift), -112vh, 0) scale(1.1);
    opacity: 0;
  }
}

.shell {
  width: min(1120px, 100%);
  display: grid;
  gap: clamp(18px, 3vw, 30px);
}

.brand-row {
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 590px);
  padding: 12px 16px;
  border: 1px solid rgba(32, 200, 223, 0.18);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.46);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}

.wordmark img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-tagline {
  color: #dffbff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.92;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4.5vw, 58px);
  align-items: start;
}

.art-card {
  position: relative;
  width: min(100%, 470px);
  aspect-ratio: 1;
  justify-self: end;
  display: grid;
  place-items: center;
  padding: clamp(18px, 2.8vw, 34px);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015)),
    rgba(2, 12, 20, 0.50);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.art-card::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 181, 74, 0.24), transparent 18%),
    radial-gradient(circle at 48% 54%, rgba(32, 200, 223, 0.34), transparent 31%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
  z-index: -2;
}

.art-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(32, 200, 223, 0.06), transparent 45%),
    radial-gradient(circle at 50% 50%, transparent 45%, rgba(0, 0, 0, 0.54) 100%);
  z-index: -1;
}

.badge-wrap {
  width: 100%;
  max-width: 410px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding: 10px;
  background: radial-gradient(circle, rgba(32, 200, 223, 0.2), transparent 68%);
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.52));
}

.badge-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
  border: 1px solid rgba(32, 200, 223, 0.34);
}

.content {
  position: relative;
  padding: 4px 0 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 8px 12px;
  border: 1px solid rgba(32, 200, 223, 0.34);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(32, 200, 223, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--aqua);
  box-shadow: 0 0 16px rgba(32, 200, 223, 0.9);
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7.2vw, 6.6rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(90deg, var(--white), #dbfbff 34%, var(--aqua) 74%, #56e8f6);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 36px rgba(32, 200, 223, 0.14);
}

.lead {
  max-width: 650px;
  margin: 18px 0 0;
  color: #d4e3ea;
  font-size: clamp(1rem, 1.7vw, 1.22rem);
  line-height: 1.58;
}

.lead strong {
  color: var(--white);
}

.launch-card,
.partners,
.auth-card,
.admin-card {
  border: 1px solid rgba(32, 200, 223, 0.22);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.launch-card {
  max-width: 650px;
  margin-top: 24px;
  padding: clamp(18px, 2.2vw, 22px);
  border-radius: 26px;
}

.launch-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.launch-title h2,
.partners-title {
  margin: 0;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pill {
  flex: 0 0 auto;
  padding: 8px 11px;
  border-radius: 999px;
  color: #06131d;
  background: linear-gradient(90deg, var(--gold), #ffe0a3);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup,
.form-grid {
  display: grid;
  gap: 12px;
}

.signup {
  grid-template-columns: 1fr auto;
}

.signup input,
.auth-card input,
.auth-card select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.signup input::placeholder,
.auth-card input::placeholder {
  color: rgba(214, 231, 238, 0.62);
}

.signup input:focus,
.auth-card input:focus,
.auth-card select:focus {
  border-color: rgba(32, 200, 223, 0.72);
  box-shadow: 0 0 0 4px rgba(32, 200, 223, 0.12);
  background: rgba(255, 255, 255, 0.1);
}

.signup button,
.cta-link,
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 0;
  border-radius: 16px;
  color: #021017;
  background: linear-gradient(90deg, #2ee6ff, #87f6ff);
  box-shadow: 0 12px 34px rgba(32, 200, 223, 0.24);
  font: inherit;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.button.secondary {
  color: #dffbff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(32, 200, 223, 0.25);
  box-shadow: none;
}

.signup button:hover,
.cta-link:hover,
.button:hover,
.partner-card:hover {
  transform: translateY(-2px);
}

.signup button:hover,
.cta-link:hover,
.button:hover {
  box-shadow: 0 18px 44px rgba(32, 200, 223, 0.32);
}

.form-note,
.help-text {
  min-height: 21px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.form-note.success {
  color: var(--success);
}

.form-note.error,
.alert.error {
  color: var(--danger);
}

.honey-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 650px;
  margin-top: 18px;
}

.feature {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.feature b {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.feature span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.partners {
  max-width: 650px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(0, 0, 0, 0.26);
}

.partners-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.partners-kicker {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.partner-card {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 200, 223, 0.14), transparent 54%),
    rgba(0, 0, 0, 0.34);
  text-decoration: none;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.partner-card:hover {
  border-color: rgba(32, 200, 223, 0.50);
  box-shadow: 0 18px 44px rgba(32, 200, 223, 0.16);
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 200, 223, 0.22), transparent 56%),
    rgba(0, 0, 0, 0.42);
}

.partner-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.partner-card.scdiving img {
  max-width: 250px;
  max-height: 82px;
}

.partner-card.submerge img {
  max-width: 300px;
  max-height: 96px;
}

.footer {
  width: min(1120px, 100%);
  margin: 22px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(214, 231, 238, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-links,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer a {
  color: #bff8ff;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.auth-page,
.admin-page {
  padding: 34px 18px;
}

.auth-wrap,
.admin-wrap {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.auth-wrap {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 68px);
}

.auth-card {
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 28px;
}

.auth-logo {
  display: block;
  width: min(360px, 100%);
  margin: 0 auto 22px;
}

.auth-card h1,
.admin-header h1 {
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.auth-card label {
  display: block;
  margin: 0 0 7px;
  color: #dffbff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.alert {
  margin: 0 0 16px;
  padding: 13px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #d9f8ff;
}

.alert.success {
  color: var(--success);
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
}

.admin-logo {
  width: min(320px, 100%);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.stat-card,
.admin-card {
  border-radius: 22px;
  padding: 18px;
}

.stat-card {
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.stat-card b {
  display: block;
  margin-top: 8px;
  font-size: 2.1rem;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  text-align: left;
}

th {
  color: #dffbff;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: #d4e3ea;
}

.sr-only {
  position: absolute;
  left: -9999px;
}

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.18fr);
    gap: 28px;
  }

  .art-card {
    width: min(100%, 430px);
  }
}

@media (max-width: 920px) {
  .page {
    justify-content: flex-start;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .art-card {
    width: min(100%, 440px);
    justify-self: center;
  }

  .content {
    text-align: center;
  }

  .lead,
  .launch-card,
  .features,
  .partners {
    margin-left: auto;
    margin-right: auto;
  }

  .footer,
  .admin-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links,
  .admin-actions {
    justify-content: center;
  }

  .admin-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .page {
    padding: 18px 14px;
  }

  .shell {
    gap: 18px;
  }

  .wordmark {
    padding: 10px;
    border-radius: 18px;
  }

  .brand-tagline {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .art-card {
    width: min(100%, 360px);
    padding: 18px;
    border-radius: 24px;
  }

  .eyebrow {
    justify-content: center;
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  h1 {
    font-size: clamp(2.55rem, 17vw, 4.2rem);
  }

  .lead {
    font-size: 1rem;
  }

  .launch-title,
  .partners-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .launch-title {
    gap: 10px;
  }

  .pill {
    width: fit-content;
  }

  .signup {
    grid-template-columns: 1fr;
  }

  .signup button,
  .cta-link,
  .button {
    width: 100%;
  }

  .features,
  .partner-grid,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .partner-card {
    min-height: 104px;
  }

  .footer {
    margin-top: 18px;
    font-size: 0.76rem;
  }

  .auth-card {
    padding: 22px;
  }
}

@media (max-width: 420px) {
  .art-card {
    width: min(100%, 320px);
  }

  .launch-card,
  .partners {
    border-radius: 22px;
  }

  .feature,
  .partner-card {
    border-radius: 18px;
  }
}

/* Planned dives and SCDiving bridge update */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.public-page {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(20px, 4vw, 44px) 18px 24px;
}

.public-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 clamp(26px, 4vw, 48px);
}

.public-brand {
  display: inline-flex;
  align-items: center;
  width: min(330px, 62vw);
  padding: 10px 12px;
  border-radius: 20px;
  border: 1px solid rgba(32, 200, 223, 0.18);
  background: rgba(2, 18, 29, 0.48);
  text-decoration: none;
}

.public-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.public-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.public-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: #dffbff;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(32, 200, 223, 0.18);
}

.public-nav a:hover,
.public-nav a[aria-current="page"] {
  color: #021017;
  background: linear-gradient(90deg, #2ee6ff, #87f6ff);
}

.dives-hero {
  max-width: 860px;
  margin: 0 auto clamp(22px, 4vw, 38px);
  text-align: center;
}

.dives-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(3rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.dives-hero .lead {
  margin-left: auto;
  margin-right: auto;
}

.dive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.dive-card {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(32, 200, 223, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(2, 18, 29, 0.72);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.dive-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto;
  height: 160px;
  background: radial-gradient(circle, rgba(32, 200, 223, 0.18), transparent 68%);
  pointer-events: none;
}

.dive-card-top,
.dive-actions,
.dive-meta,
.table-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.dive-card h2 {
  position: relative;
  margin: 16px 0 10px;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.dive-card p {
  position: relative;
  color: #cfe1e9;
  line-height: 1.55;
}

.dive-date {
  margin-bottom: 3px;
  color: #7dffbf !important;
  font-weight: 900;
}

.dive-location {
  margin-top: 0;
  color: #dffbff !important;
  font-weight: 800;
}

.dive-meta {
  margin: 18px 0;
}

.dive-meta span {
  padding: 7px 10px;
  border-radius: 999px;
  color: #dffbff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.10);
  font-size: 0.82rem;
  font-weight: 800;
}

.empty-dive-card {
  grid-column: 1 / -1;
  text-align: center;
}

.public-footer {
  margin-top: clamp(26px, 4vw, 44px);
}

.wide-admin-wrap {
  width: min(1280px, 100%);
}

.form-grid.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.admin-form label {
  display: block;
  margin: 0 0 7px;
  color: #dffbff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  outline: none;
}

.admin-form textarea {
  min-height: 120px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: rgba(32, 200, 223, 0.72);
  box-shadow: 0 0 0 4px rgba(32, 200, 223, 0.12);
}

.left-actions {
  justify-content: flex-start;
}

.inline-form {
  display: inline-flex;
  margin: 0;
}

.mini-button {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border: 1px solid rgba(32, 200, 223, 0.25);
  border-radius: 10px;
  color: #dffbff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.mini-button:hover {
  background: rgba(32, 200, 223, 0.18);
}

.danger-mini {
  border-color: rgba(255, 107, 107, 0.34);
  color: #ffd8d8;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 9px;
  border-radius: 999px;
  color: #dffbff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-published,
.status-active,
.status-sent {
  color: #062016;
  background: var(--success);
}

.status-draft,
.status-pending {
  color: #06131d;
  background: #c9d8df;
}

.status-cancelled,
.status-inactive,
.status-failed {
  color: #210707;
  background: #ff8b8b;
}

.status-completed {
  color: #06131d;
  background: #ffcf7a;
}

@media (max-width: 820px) {
  .public-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .public-nav {
    justify-content: center;
  }

  .hero-actions,
  .left-actions {
    justify-content: center;
  }

  .form-grid.two-col {
    grid-template-columns: 1fr;
  }

  .dive-actions .button,
  .hero-actions .button {
    width: 100%;
  }
}

/* Public registration update */
.no-top {
  margin-top: 0;
}

.auth-links a {
  font-weight: 900;
}

.check-row,
.auth-check {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
  min-height: auto;
  margin: 6px 0 4px;
  color: #dffbff;
  font-weight: 800;
  line-height: 1.35;
}

.check-row input[type="checkbox"],
.auth-card .check-row input[type="checkbox"],
.admin-form .check-row input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
  border-radius: 5px;
}

.account-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.account-summary div {
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.account-summary span {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-summary b {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 0.98rem;
}

.user-row-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.user-row-card {
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.user-row-card + .user-row-card {
  margin-top: 14px;
}

.user-row-card label {
  display: block;
  margin: 0 0 7px;
  color: #dffbff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.user-row-card input,
.user-row-card select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 13px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  font: inherit;
  outline: none;
}

.user-row-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 14px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.86rem;
}

.user-row-meta .button {
  margin-left: auto;
}

@media (max-width: 900px) {
  .user-row-main {
    grid-template-columns: 1fr;
  }

  .user-row-meta .button {
    width: 100%;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .account-summary {
    grid-template-columns: 1fr;
  }
}

.user-row-card .check-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  padding: 0;
}

/* Descend Together homepage redesign v12 */
.home-body {
  min-height: 100vh;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 177, 67, 0.18), transparent 24%),
    radial-gradient(circle at 78% 10%, rgba(32, 200, 223, 0.20), transparent 25%),
    radial-gradient(circle at 50% 92%, rgba(32, 200, 223, 0.12), transparent 30%),
    linear-gradient(180deg, #061622 0%, #05283e 38%, #031622 68%, #01070c 100%);
}

.home-body::before {
  background:
    linear-gradient(180deg, rgba(255, 184, 75, 0.10) 0%, transparent 18%),
    repeating-linear-gradient(112deg, rgba(255,255,255,0.035) 0, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 86px);
  opacity: 0.72;
}

.home-body::after {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 191, 82, 0.12), transparent 40%),
    radial-gradient(ellipse at 50% 56%, rgba(21, 138, 178, 0.15), transparent 48%),
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.20) 70%, rgba(0, 0, 0, 0.58) 100%);
  mask-image: none;
}

.home-nav,
.home-page,
.home-footer {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 36px));
  margin-left: auto;
  margin-right: auto;
}

.home-nav {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 4px;
}

.home-brand {
  display: inline-flex;
  width: min(360px, 54vw);
  text-decoration: none;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
}

.home-brand img,
.hero-badge,
.home-partner-card img {
  display: block;
  width: 100%;
  height: auto;
}

.home-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.home-links a {
  padding: 11px 15px;
  border: 1px solid rgba(122, 236, 255, 0.22);
  border-radius: 999px;
  color: #e7fbff;
  background: rgba(255, 255, 255, 0.055);
  font-weight: 900;
  font-size: 0.82rem;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.home-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 236, 255, 0.52);
  background: rgba(32, 200, 223, 0.14);
}

.home-page {
  padding: clamp(18px, 4vw, 46px) 0 0;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  min-height: calc(100svh - 154px);
}

.home-copy {
  max-width: 680px;
}

.home-kicker,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(32, 200, 223, 0.34);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(32, 200, 223, 0.10);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-kicker span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #35e8ff;
  box-shadow: 0 0 18px rgba(53, 232, 255, 0.95);
}

.home-page h1 {
  margin: 0;
  max-width: 780px;
  color: #ffffff;
  font-size: clamp(3.85rem, 9vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: -0.085em;
  text-transform: uppercase;
  text-wrap: balance;
}

.home-page h1 em {
  display: inline-block;
  color: transparent;
  font-style: normal;
  background: linear-gradient(90deg, #f8fbff 0%, #7cf4ff 42%, #19c6df 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.home-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d1e3ea;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  line-height: 1.68;
}

.home-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
}

.button.quiet {
  color: #dffbff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.home-signup {
  width: min(650px, 100%);
  margin-top: 26px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid rgba(122, 236, 255, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(2, 19, 29, 0.66);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.30);
  backdrop-filter: blur(18px);
}

.home-signup-text {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.home-signup h2 {
  margin: 0;
  color: #ffffff;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-signup p {
  max-width: 330px;
  margin: 0;
  color: #b8cbd4;
  font-size: 0.9rem;
  line-height: 1.45;
}

.home-signup .form-note {
  min-height: auto;
  margin-top: 12px;
}

.home-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 590px;
}

.badge-stage {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.badge-stage::before,
.badge-stage::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.badge-stage::before {
  inset: -11%;
  background:
    radial-gradient(circle, rgba(32, 200, 223, 0.20), transparent 61%),
    conic-gradient(from 210deg, rgba(32, 200, 223, 0), rgba(32, 200, 223, 0.55), rgba(255, 181, 74, 0.26), rgba(32, 200, 223, 0));
  filter: blur(10px);
  opacity: 0.95;
  z-index: -2;
}

.badge-stage::after {
  inset: -4%;
  border: 1px solid rgba(122, 236, 255, 0.20);
  box-shadow:
    inset 0 0 42px rgba(32, 200, 223, 0.11),
    0 0 55px rgba(32, 200, 223, 0.10);
  z-index: -1;
}

.hero-badge {
  max-width: 500px;
  border-radius: 999px;
  filter: drop-shadow(0 36px 58px rgba(0, 0, 0, 0.50));
}

.orbit-card {
  position: absolute;
  width: min(210px, 44vw);
  padding: 14px 16px;
  border: 1px solid rgba(122, 236, 255, 0.24);
  border-radius: 20px;
  color: #e9fbff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(2, 20, 31, 0.66);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.orbit-card b,
.home-panel h2,
.home-partners h2 {
  color: #ffffff;
}

.orbit-card b {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.orbit-card span {
  display: block;
  color: #bdd2dc;
  font-size: 0.86rem;
  line-height: 1.35;
}

.card-one {
  top: 4%;
  left: -8%;
}

.card-two {
  right: -9%;
  bottom: 15%;
}

.card-three {
  left: 4%;
  bottom: -2%;
}

.home-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(24px, 5vw, 60px);
}

.home-panel,
.home-partners,
.home-partner-card {
  border: 1px solid rgba(122, 236, 255, 0.20);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.025)),
    rgba(2, 18, 29, 0.58);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.home-panel {
  min-height: 190px;
  padding: 24px;
  border-radius: 28px;
}

.home-panel span {
  display: inline-flex;
  margin-bottom: 24px;
  color: #58eaff;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.home-panel h2 {
  margin: 0 0 10px;
  font-size: 1.38rem;
  letter-spacing: -0.03em;
}

.home-panel p {
  margin: 0;
  color: #bdcfd8;
  line-height: 1.55;
}

.home-partners {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  margin-top: 16px;
  padding: 24px;
  border-radius: 30px;
}

.home-partners .section-label {
  margin-bottom: 14px;
}

.home-partners h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.home-partner-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 14px;
}

.home-partner-card {
  min-height: 134px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border-radius: 24px;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.home-partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(122, 236, 255, 0.50);
  background:
    radial-gradient(circle at 50% 0%, rgba(32, 200, 223, 0.20), transparent 55%),
    rgba(2, 18, 29, 0.70);
}

.scdiving-mark {
  max-width: 250px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.35));
}

.submerge-mark {
  max-width: 330px;
  border-radius: 12px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.30));
}

.home-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 24px;
  color: rgba(220, 239, 246, 0.70);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-footer nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
}

.home-footer a {
  color: #bff8ff;
  text-decoration: none;
}

.home-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1040px) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-copy {
    max-width: 820px;
  }

  .home-visual {
    min-height: auto;
    padding: 28px 0 10px;
  }

  .badge-stage {
    width: min(500px, 88vw);
  }

  .home-panels,
  .home-partners {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-nav,
  .home-page,
  .home-footer {
    width: min(100% - 28px, 1180px);
  }

  .home-nav {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-top: 14px;
  }

  .home-brand {
    width: min(440px, 100%);
  }

  .home-links {
    width: 100%;
    justify-content: flex-start;
  }

  .home-links a {
    flex: 1 1 auto;
    text-align: center;
  }

  .home-page h1 {
    font-size: clamp(3.25rem, 16vw, 5.5rem);
  }

  .home-signup-text {
    display: block;
  }

  .home-signup-text p {
    margin-top: 8px;
  }

  .home-signup .signup,
  .home-partner-grid,
  .home-panels {
    grid-template-columns: 1fr;
  }

  .orbit-card {
    position: static;
    width: 100%;
    margin-top: 10px;
  }

  .badge-stage {
    display: block;
    aspect-ratio: auto;
  }

  .hero-badge {
    margin: 0 auto 12px;
    max-width: min(390px, 100%);
  }

  .badge-stage::after {
    display: none;
  }

  .home-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .home-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .home-page h1 {
    letter-spacing: -0.075em;
  }

  .home-kicker,
  .section-label {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .home-actions .button {
    width: 100%;
  }

  .home-panel,
  .home-partners,
  .home-signup {
    border-radius: 22px;
  }
}

.code-block {
  display: block;
  overflow-x: auto;
  margin: 14px 0;
  padding: 16px;
  border: 1px solid rgba(99, 232, 255, 0.22);
  border-radius: 16px;
  background: rgba(2, 10, 18, 0.55);
  color: rgba(235, 252, 255, 0.92);
  font: 13px/1.55 ui-monospace, SFMono-Regular, Menlo, Consolas, "Liberation Mono", monospace;
  white-space: pre;
}

/* v15 - Dropdown readability fix
   Native select menus can render option lists with a white OS background.
   This keeps the closed select dark and makes the open options readable. */
select,
.auth-card select,
.admin-form select,
.user-row-card select {
  color: #eaffff !important;
  background-color: #082538 !important;
  background-image:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
    linear-gradient(45deg, transparent 50%, #75f2ff 50%),
    linear-gradient(135deg, #75f2ff 50%, transparent 50%);
  background-position:
    0 0,
    calc(100% - 19px) 50%,
    calc(100% - 13px) 50%;
  background-size:
    auto,
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px !important;
  border-color: rgba(64, 224, 240, 0.28) !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select option,
.auth-card select option,
.admin-form select option,
.user-row-card select option {
  color: #06131d !important;
  background: #ffffff !important;
}

select option:checked,
.auth-card select option:checked,
.admin-form select option:checked,
.user-row-card select option:checked {
  color: #06131d !important;
  background: #c9f8ff !important;
}

select option:disabled,
.auth-card select option:disabled,
.admin-form select option:disabled,
.user-row-card select option:disabled {
  color: #687782 !important;
  background: #f2f7f9 !important;
}

select::-ms-expand {
  display: none;
}

/* Dive view filters and Descend Together flags */
.dive-filter-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto 24px;
  padding: 18px;
  border: 1px solid rgba(32, 200, 223, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(2, 18, 29, 0.66);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.dive-filter-panel h2 {
  margin: 4px 0 0;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.filter-kicker {
  display: inline-flex;
  color: #87f6ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dive-filter-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 11px 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(32, 200, 223, 0.24);
  color: #dffbff;
  background: rgba(255, 255, 255, 0.065);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 900;
}

.filter-chip strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 999px;
  color: #021017;
  background: rgba(135, 246, 255, 0.92);
  font-size: 0.78rem;
}

.filter-chip:hover,
.filter-chip.active {
  color: #021017;
  background: linear-gradient(90deg, #2ee6ff, #87f6ff);
  border-color: rgba(135, 246, 255, 0.9);
}

.filter-chip:hover strong,
.filter-chip.active strong {
  color: #dffbff;
  background: rgba(2, 18, 29, 0.72);
}

.muted-filter {
  opacity: 0.62;
}

.category-pill {
  color: #021017;
  background: linear-gradient(90deg, #87f6ff, #7dffbf);
}

.status-dt {
  color: #06131d;
  background: #ffcf7a;
  border-color: rgba(255, 207, 122, 0.88);
}

.dt-dive-card {
  border-color: rgba(255, 207, 122, 0.42);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.30), 0 0 0 1px rgba(255, 207, 122, 0.08) inset;
}

.dt-dive-card::before {
  background: radial-gradient(circle, rgba(255, 207, 122, 0.20), transparent 68%);
}

.dive-host {
  margin: 0 0 10px;
  color: #ffdf9b !important;
  font-weight: 900;
}

.category-meetings .category-pill {
  background: linear-gradient(90deg, #c9d8ff, #87f6ff);
}

.category-announcements .category-pill {
  background: linear-gradient(90deg, #ffcf7a, #fff0b8);
}

.category-travel .category-pill {
  background: linear-gradient(90deg, #b9ffdf, #7dffbf);
}

@media (max-width: 820px) {
  .dive-filter-panel {
    align-items: stretch;
    flex-direction: column;
    text-align: center;
  }

  .dive-filter-links {
    justify-content: center;
  }

  .filter-chip {
    flex: 1 1 auto;
    justify-content: center;
  }
}


/* Descend Together social and planned-dive admin updates */
.home-partner-grid {
  align-items: stretch;
}

.social-partner-card {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 8px;
  min-height: 138px;
  text-align: center;
  text-decoration: none;
}

.social-partner-card .social-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(32, 200, 223, 0.34);
  background:
    radial-gradient(circle at 30% 105%, #feda75 0 18%, transparent 34%),
    radial-gradient(circle at 18% 86%, #fa7e1e 0 20%, transparent 38%),
    radial-gradient(circle at 82% 18%, #515bd4 0 22%, transparent 42%),
    linear-gradient(135deg, #833ab4, #fd1d1d 54%, #fcb045);
  color: #ffffff;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.10) inset;
}

.social-partner-card .social-icon svg {
  width: 28px;
  height: 28px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}



.social-partner-card .tiktok-icon {
  background:
    radial-gradient(circle at 35% 34%, rgba(37, 244, 238, 0.95) 0 16%, transparent 32%),
    radial-gradient(circle at 68% 68%, rgba(254, 44, 85, 0.95) 0 16%, transparent 34%),
    linear-gradient(135deg, #02060a 0%, #111722 100%);
  border-color: rgba(37, 244, 238, 0.45);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), 0 0 26px rgba(37, 244, 238, 0.16);
}

.social-partner-card .tiktok-icon .tt-note,
.footer-social-link .tt-note,
.social-partner-card .tiktok-icon .tt-spark,
.footer-social-link .tt-spark {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-partner-card .youtube-icon {
  background: linear-gradient(135deg, #ff3131 0%, #d60000 58%, #9d0000 100%);
  border-color: rgba(255, 255, 255, 0.25);
}

.social-partner-card .youtube-icon .yt-screen,
.footer-social-link .yt-screen {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-partner-card .youtube-icon .yt-play,
.footer-social-link .yt-play {
  fill: currentColor;
  stroke: none;
}

.social-partner-card strong {
  color: #ffffff;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.social-partner-card small {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-social-link svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.check-field {
  align-self: end;
}

.check-row {
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 14px;
  border: 1px solid rgba(32, 200, 223, 0.22);
  border-radius: 16px;
  background: rgba(1, 14, 24, 0.48);
  cursor: pointer;
}

.check-row input[type="checkbox"] {
  width: 20px;
  height: 20px;
  min-width: 20px;
  accent-color: var(--aqua);
}

.check-row strong,
.check-row small {
  display: block;
}

.check-row small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.posting-identity {
  padding: 15px 16px;
  border: 1px solid rgba(32, 200, 223, 0.24);
  border-radius: 16px;
  background: rgba(32, 200, 223, 0.08);
}

.posting-identity strong,
.posting-identity span,
.posting-identity small {
  display: block;
}

.posting-identity span {
  margin-top: 5px;
  color: #ffffff;
  font-weight: 800;
}

.posting-identity small {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.posting-identity.needs-link {
  border-color: rgba(255, 107, 107, 0.46);
  background: rgba(255, 107, 107, 0.10);
}

.list-title-row {
  align-items: flex-start;
}

.admin-list-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.compact-help {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.8rem;
}

button[disabled],
.button[disabled] {
  cursor: not-allowed;
  opacity: 0.48;
  filter: grayscale(0.35);
}

@media (max-width: 720px) {
  .check-row {
    align-items: flex-start;
  }

  .social-partner-card {
    min-height: 120px;
  }
}

/* Real homepage + community photo upload update v18 */
.real-home-body {
  background:
    radial-gradient(circle at 10% 5%, rgba(255, 183, 74, 0.19), transparent 25%),
    radial-gradient(circle at 88% 12%, rgba(36, 228, 255, 0.22), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(25, 132, 184, 0.20), transparent 36%),
    linear-gradient(180deg, #061723 0%, #06293e 42%, #041827 75%, #01070c 100%);
}

.real-home-page {
  padding-top: clamp(10px, 2.5vw, 26px);
}

.real-home-hero {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 5vw, 66px);
  align-items: start;
  min-height: auto;
  padding-top: clamp(20px, 4vw, 44px);
}

.real-home-hero .home-copy {
  padding-top: clamp(12px, 3vw, 34px);
}

.real-home-hero .home-page h1,
.real-home-hero h1 {
  font-size: clamp(3.6rem, 8vw, 7.9rem);
}

.real-home-stack {
  display: grid;
  gap: 18px;
  align-self: stretch;
}

.live-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(122, 236, 255, 0.22);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.032)),
    rgba(2, 18, 29, 0.72);
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.33);
  backdrop-filter: blur(18px);
}

.live-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 190, 90, 0.20), transparent 31%),
    radial-gradient(circle at 96% 4%, rgba(36, 228, 255, 0.18), transparent 35%);
  pointer-events: none;
}

.live-card > * {
  position: relative;
  z-index: 1;
}

.live-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 22px 10px;
}

.live-card-head h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.inline-label {
  margin: 0;
  padding: 6px 10px;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
}

.live-card-head a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 11px;
  border-radius: 999px;
  color: #04131d;
  background: linear-gradient(90deg, #7cf4ff, #d4fbff);
  font-size: 0.75rem;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.upcoming-home-card {
  min-height: 360px;
}

.upcoming-home-list {
  max-height: 530px;
  overflow: auto;
  padding: 4px 14px 16px 18px;
  scrollbar-color: rgba(124, 244, 255, 0.45) rgba(255, 255, 255, 0.08);
}

.upcoming-home-item {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 12px;
  padding: 14px;
  border: 1px solid rgba(122, 236, 255, 0.16);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(2, 14, 24, 0.54);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.upcoming-home-item:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 244, 255, 0.42);
  background:
    radial-gradient(circle at 0% 0%, rgba(124, 244, 255, 0.16), transparent 48%),
    rgba(2, 18, 29, 0.70);
}

.upcoming-home-item.is-descend-dive {
  border-color: rgba(255, 207, 122, 0.48);
  box-shadow: inset 0 0 0 1px rgba(255, 207, 122, 0.06), 0 18px 44px rgba(0, 0, 0, 0.21);
}

.event-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(122, 236, 255, 0.22);
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.30), transparent 35%),
    linear-gradient(180deg, rgba(32, 200, 223, 0.28), rgba(32, 200, 223, 0.08));
  font-size: 1.35rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.category-meetings .event-icon {
  background: linear-gradient(180deg, rgba(197, 217, 255, 0.32), rgba(124, 244, 255, 0.10));
}

.category-announcements .event-icon {
  background: linear-gradient(180deg, rgba(255, 207, 122, 0.34), rgba(255, 207, 122, 0.10));
}

.category-travel .event-icon {
  background: linear-gradient(180deg, rgba(125, 255, 191, 0.33), rgba(125, 255, 191, 0.10));
}

.event-copy {
  min-width: 0;
}

.event-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 0 0 5px;
}

.event-title-row strong {
  color: #ffffff;
  font-size: 0.97rem;
  line-height: 1.25;
}

.event-title-row span,
.upcoming-home-item em {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #052031;
  background: rgba(124, 244, 255, 0.90);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.upcoming-home-item em {
  width: fit-content;
  margin-top: 8px;
  background: linear-gradient(90deg, #ffcf7a, #fff0b8);
}

.event-copy h3 {
  margin: 0;
  color: #dffbff;
  font-size: 1.04rem;
  line-height: 1.2;
}

.event-copy p,
.event-copy small {
  display: block;
  margin: 4px 0 0;
  color: #b9cdd6;
  font-size: 0.88rem;
  line-height: 1.38;
}

.event-copy small {
  color: #ffdf9b;
  font-weight: 800;
}

.small-empty-state {
  margin: 18px 22px 22px;
}

.photo-rotation-card {
  min-height: 430px;
}

.photo-rotator {
  position: relative;
  min-height: 350px;
  margin: 0 18px 18px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.photo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 700ms ease, transform 1200ms ease;
}

.photo-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.photo-slide img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
  object-fit: cover;
}

.photo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.72) 100%);
}

.photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 3;
  display: grid;
  gap: 3px;
}

.photo-caption strong {
  color: #ffffff;
  font-size: 1.18rem;
}

.photo-caption span,
.photo-caption small,
.photo-caption p {
  color: #d7eef5;
  margin: 0;
  line-height: 1.35;
}

.photo-caption small {
  color: #8ff7ff;
  font-weight: 800;
}

.photo-caption p {
  margin-top: 4px;
  color: #c2d8df;
  font-size: 0.9rem;
}

.photo-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 0 0 18px;
}

.photo-dots span {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.26);
}

.photo-dots span.active {
  background: #7cf4ff;
  box-shadow: 0 0 12px rgba(124, 244, 255, 0.9);
}

.photo-empty-feature {
  display: grid;
  place-items: center;
  gap: 14px;
  margin: 0 18px 18px;
  padding: 24px;
  min-height: 320px;
  border: 1px dashed rgba(124, 244, 255, 0.25);
  border-radius: 24px;
  text-align: center;
  background: rgba(0, 0, 0, 0.12);
}

.photo-empty-feature img {
  width: min(190px, 55vw);
  height: auto;
  border-radius: 999px;
  filter: drop-shadow(0 20px 34px rgba(0, 0, 0, 0.35));
}

.photo-empty-feature p {
  max-width: 320px;
  margin: 0;
  color: #c9dce4;
  line-height: 1.5;
}

.real-home-panels {
  margin-top: clamp(22px, 4vw, 46px);
}

.real-partner-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.photo-page {
  min-height: 100vh;
}

.wide-auth-wrap {
  width: min(1180px, calc(100% - 28px));
}

.photo-upload-card {
  max-width: none;
  width: 100%;
}

.photo-form {
  margin-top: 22px;
}

.two-col-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.photo-form input[type="file"] {
  padding: 12px;
  color: #dffbff;
  cursor: pointer;
}

.photo-form small,
.photo-review-form small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}

.full-field {
  display: block;
  margin-top: 16px;
}

.full-field span,
.photo-form label span,
.photo-review-form label span {
  display: block;
  margin-bottom: 7px;
  color: #eafcff;
  font-weight: 900;
}

.photo-admin-grid,
.photo-review-grid {
  display: grid;
  gap: 16px;
}

.compact-photo-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.photo-admin-card {
  overflow: hidden;
  border: 1px solid rgba(122, 236, 255, 0.18);
  border-radius: 22px;
  background: rgba(2, 18, 29, 0.54);
}

.photo-admin-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-admin-card div {
  padding: 13px;
}

.photo-admin-card strong,
.photo-admin-card small,
.photo-admin-card p {
  display: block;
  margin: 0 0 6px;
}

.photo-admin-card p,
.photo-admin-card small {
  color: var(--muted);
}

.photo-admin-shell {
  width: min(1240px, calc(100% - 28px));
}

.photo-review-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.photo-review-card {
  overflow: hidden;
  border: 1px solid rgba(122, 236, 255, 0.20);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.070), rgba(255, 255, 255, 0.025)),
    rgba(2, 18, 29, 0.70);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.25);
}

.photo-review-card > a,
.photo-review-card img {
  display: block;
}

.photo-review-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.photo-review-body {
  padding: 16px;
}

.photo-review-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.photo-review-meta strong {
  color: #ffffff;
  font-size: 1.08rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 1000;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pending {
  color: #06131d;
  background: #ffcf7a;
}

.status-approved {
  color: #06131d;
  background: #7dffbf;
}

.status-rejected {
  color: #ffffff;
  background: #d94e5d;
}

.photo-detail-line,
.photo-narrative {
  color: #c5d9e2;
  font-size: 0.9rem;
  line-height: 1.45;
}

.photo-detail-line {
  margin: 6px 0;
}

.photo-narrative {
  margin: 10px 0;
  padding: 11px 12px;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.18);
}

.photo-review-form {
  display: grid;
  grid-template-columns: 1fr 100px;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(122, 236, 255, 0.14);
}

.photo-review-form .mini-check-row,
.photo-review-actions {
  grid-column: 1 / -1;
}

.mini-check-row {
  display: flex !important;
  align-items: center;
  gap: 8px;
  color: #eafcff;
  font-weight: 900;
}

.mini-check-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--aqua);
}

.photo-review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.danger-button {
  color: #ffffff;
  background: linear-gradient(90deg, #d94e5d, #ff7a86);
  box-shadow: 0 16px 32px rgba(217, 78, 93, 0.18);
}

select,
option {
  color: #071923;
}

select {
  color: #eafcff;
}

select option {
  color: #071923;
  background: #ffffff;
}

@media (max-width: 1040px) {
  .real-home-hero {
    grid-template-columns: 1fr;
  }

  .real-home-stack {
    grid-template-columns: minmax(0, 1fr);
  }

  .real-partner-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .live-card-head {
    display: grid;
  }

  .upcoming-home-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 12px;
  }

  .event-icon {
    width: 42px;
    height: 42px;
    border-radius: 15px;
    font-size: 1.1rem;
  }

  .event-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .photo-rotator,
  .photo-slide img {
    min-height: 310px;
  }

  .two-col-form,
  .photo-review-form {
    grid-template-columns: 1fr;
  }

  .photo-review-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .upcoming-home-list {
    max-height: none;
    overflow: visible;
    padding: 4px 12px 14px;
  }

  .live-card {
    border-radius: 24px;
  }

  .photo-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

/* Policy and SEO support pages v20 */
.policy-page {
  padding-top: 34px;
}

.policy-card {
  max-width: 980px;
  margin: 34px auto 70px;
  line-height: 1.7;
}

.policy-card h1 {
  margin-top: 8px;
  font-size: clamp(2.2rem, 5vw, 4.3rem);
}

.policy-card h2 {
  margin-top: 28px;
  color: #ffffff;
}

.policy-card p {
  color: var(--muted);
}

/* Dive attendance buttons v21 */
.inline-attend-form {
  display: inline-flex;
  margin: 0;
}

.success-button,
.success-button:hover {
  background: linear-gradient(135deg, rgba(70, 255, 188, 0.95), rgba(122, 240, 255, 0.95));
  color: #03202b;
  border-color: rgba(122, 240, 255, 0.8);
  cursor: default;
}

.disabled-button,
.disabled-button:hover {
  opacity: 0.72;
  cursor: not-allowed;
  filter: grayscale(0.15);
}

.dive-actions form button.button {
  min-height: 42px;
}

/* Attend button layout and profile link tools v22 */
.dive-card {
  display: flex;
  flex-direction: column;
}

.dive-actions {
  margin-top: auto;
  padding-top: 16px;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.inline-attend-form {
  display: inline-flex;
  margin: 0;
  flex: 0 0 auto;
}

.attend-action-button,
.attend-state-button {
  min-width: 128px;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}

.link-needed-button,
.login-needed-button {
  background: linear-gradient(135deg, rgba(20, 56, 70, 0.95), rgba(12, 35, 49, 0.95));
  border-color: rgba(120, 238, 255, 0.28);
  color: #eafbff;
}

.link-needed-button:hover,
.login-needed-button:hover {
  background: linear-gradient(135deg, rgba(48, 224, 245, 0.22), rgba(16, 70, 90, 0.95));
  border-color: rgba(120, 238, 255, 0.55);
  color: #ffffff;
}

.success-button.attend-state-button,
.success-button.attend-state-button:hover {
  background: linear-gradient(135deg, rgba(70, 255, 188, 0.96), rgba(122, 240, 255, 0.96));
  border-color: rgba(122, 240, 255, 0.8);
  color: #03202b;
  box-shadow: 0 10px 28px rgba(70, 255, 188, 0.18);
}

.profile-link-card {
  margin: 20px 0;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(120, 238, 255, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.profile-link-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.2rem;
}

.profile-link-form {
  margin: 14px 0 10px;
}

@media (max-width: 820px) {
  .dive-actions {
    justify-content: stretch;
  }

  .inline-attend-form,
  .attend-action-button,
  .attend-state-button {
    width: 100%;
  }
}

/* Dive card readability and attendance actions v23 */
.dive-description-toggle {
  position: relative;
  margin: 16px 0 10px;
}

.dive-description-toggle summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  border-radius: 16px;
  outline: none;
}

.dive-description-toggle summary::-webkit-details-marker {
  display: none;
}

.dive-card-title,
.dive-card-title-static {
  position: relative;
  display: block;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 950;
}

.dive-card-title-static {
  margin: 16px 0 10px;
}

.dive-description-toggle summary:hover .dive-card-title,
.dive-description-toggle summary:focus .dive-card-title {
  color: #8df8ff;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.read-more-hint {
  flex: 0 0 auto;
  margin-top: 3px;
  padding: 6px 9px;
  border-radius: 999px;
  color: #05202b;
  background: linear-gradient(90deg, #86f6ff, #67e0ee);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.dive-description-toggle[open] .read-more-hint {
  background: rgba(255, 255, 255, 0.12);
  color: #dffbff;
  border: 1px solid rgba(134, 246, 255, 0.24);
}

.dive-description-toggle[open] .read-more-hint::before {
  content: "Close ";
}

.dive-full-description {
  margin-top: 14px;
  padding: 15px 16px;
  border-radius: 18px;
  color: #dffbff;
  line-height: 1.62;
  background: rgba(2, 18, 29, 0.56);
  border: 1px solid rgba(120, 238, 255, 0.18);
}

.dive-excerpt {
  margin-top: 12px;
}

.dive-actions {
  width: 100%;
  justify-content: flex-end;
}

.dive-actions .button,
.dive-actions button.button,
.dive-actions a.button,
.dive-actions span.button {
  width: auto;
  max-width: 100%;
  min-height: 42px;
  padding: 11px 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.attend-action-button,
.attend-state-button {
  min-width: 124px;
  max-width: 170px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.link-needed-button,
.login-needed-button {
  min-width: 124px;
}

.link-needed-button::after,
.login-needed-button::after {
  content: "";
}

.success-button.attend-state-button,
.success-button.attend-state-button:hover {
  color: #04242d;
  background: linear-gradient(135deg, #4dffbc, #8df8ff);
  border-color: rgba(141, 248, 255, 0.9);
}

@media (max-width: 700px) {
  .dive-description-toggle summary {
    flex-direction: column;
    gap: 8px;
  }

  .dive-actions {
    justify-content: stretch;
  }

  .dive-actions .button,
  .dive-actions button.button,
  .dive-actions a.button,
  .dive-actions span.button,
  .inline-attend-form,
  .attend-action-button,
  .attend-state-button {
    width: 100%;
    max-width: none;
  }
}

/* Attending button high-contrast state v24 */
.dive-actions .success-button.attend-state-button,
.dive-actions .success-button.attend-state-button:hover,
.success-button.attend-state-button,
.success-button.attend-state-button:hover {
  color: #061018;
  background: linear-gradient(135deg, #ffd166 0%, #ff9f1c 48%, #ff6b35 100%);
  border: 1px solid rgba(255, 209, 102, 0.95);
  box-shadow: 0 14px 32px rgba(255, 159, 28, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.42);
  cursor: default;
}

.success-button.attend-state-button::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border-radius: 999px;
  color: #061018;
  background: rgba(255, 255, 255, 0.42);
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
}

/* Dashboard polish + faster login update v25 */
.admin-dashboard-page {
  padding: clamp(18px, 3vw, 42px);
}

.admin-dashboard-shell {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.admin-dashboard-hero,
.admin-panel,
.admin-stat-card,
.admin-tool-card {
  border: 1px solid rgba(117, 231, 246, 0.22);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    rgba(5, 28, 42, 0.78);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.admin-dashboard-hero {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(22px, 4vw, 42px);
  border-radius: 34px;
  overflow: hidden;
  position: relative;
}

.admin-dashboard-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 197, 87, 0.16), transparent 28%),
    radial-gradient(circle at 74% 20%, rgba(74, 227, 255, 0.20), transparent 32%);
  pointer-events: none;
}

.admin-dashboard-hero > * {
  position: relative;
  z-index: 1;
}

.admin-dashboard-brand img {
  display: block;
  width: min(320px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, 0.28));
}

.admin-dashboard-copy h1 {
  margin: 8px 0 10px;
  font-size: clamp(3.4rem, 9vw, 7.8rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  color: #fff;
}

.admin-dashboard-copy p:not(.section-label) {
  margin: 0;
  max-width: 720px;
  color: #cfe4ec;
  font-size: 1.05rem;
}

.admin-dashboard-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.admin-dashboard-nav .button {
  min-width: 118px;
  text-align: center;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0;
}

.admin-stat-card {
  min-height: 138px;
  border-radius: 24px;
  padding: 18px;
  display: grid;
  align-content: space-between;
  gap: 12px;
}

.admin-stat-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 15px;
  background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.28), rgba(75, 229, 255, 0.12));
  border: 1px solid rgba(117, 231, 246, 0.22);
  font-size: 1.25rem;
}

.admin-stat-label {
  display: block;
  color: #b9ccd5;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-stat-card strong {
  display: block;
  margin: 3px 0;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: #fff;
  line-height: 1;
}

.admin-stat-card small {
  display: block;
  color: #9fb5bf;
  font-weight: 700;
}

.admin-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, 0.65fr);
  gap: 18px;
  align-items: start;
}

.admin-panel {
  border-radius: 28px;
  padding: clamp(18px, 2.6vw, 28px);
}

.admin-panel-wide {
  grid-row: span 2;
}

.admin-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.admin-panel-head h2 {
  margin: 7px 0 0;
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.text-link {
  color: #91f5ff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.text-link:hover {
  text-decoration: underline;
}

.pretty-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.pretty-tools .admin-tool-card {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px 15px;
  min-height: 172px;
  padding: 18px;
  border-radius: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.pretty-tools .admin-tool-card:hover {
  transform: translateY(-3px);
  border-color: rgba(119, 244, 255, 0.54);
  background:
    linear-gradient(145deg, rgba(79, 224, 246, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(6, 32, 46, 0.86);
}

.admin-tool-icon {
  grid-row: 1 / span 3;
  width: 54px;
  height: 54px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(67, 226, 255, 0.22), rgba(255, 196, 90, 0.12));
  border: 1px solid rgba(117, 231, 246, 0.25);
  font-size: 1.5rem;
}

.pretty-tools .admin-tool-card strong {
  color: #fff;
  font-size: 1.12rem;
  line-height: 1.1;
}

.pretty-tools .admin-tool-card small {
  color: #bfd3dc;
  font-size: 0.92rem;
  line-height: 1.38;
}

.pretty-tools .admin-tool-card em {
  color: #8ff4ff;
  font-style: normal;
  font-weight: 900;
  align-self: end;
}

.admin-mini-list {
  display: grid;
  gap: 10px;
}

.admin-mini-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(0, 0, 0, 0.14);
  color: inherit;
  text-decoration: none;
}

.admin-mini-item:hover {
  border-color: rgba(128, 241, 255, 0.42);
}

.admin-mini-item span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.admin-mini-item strong,
.admin-mini-item small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-mini-item strong {
  color: #fff;
  font-size: 0.95rem;
}

.admin-mini-item small {
  color: #a9bec8;
  font-size: 0.82rem;
}

.admin-mini-item b {
  flex: 0 0 auto;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(93, 245, 209, 0.12);
  color: #abfff0;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .admin-dashboard-hero {
    grid-template-columns: 1fr;
  }

  .admin-dashboard-nav {
    justify-content: flex-start;
  }

  .admin-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .admin-panel-grid {
    grid-template-columns: 1fr;
  }

  .admin-panel-wide {
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .admin-dashboard-page {
    padding: 14px;
  }

  .admin-dashboard-hero,
  .admin-panel {
    border-radius: 24px;
  }

  .admin-dashboard-copy h1 {
    font-size: clamp(3.1rem, 19vw, 5rem);
  }

  .admin-dashboard-nav .button {
    width: 100%;
  }

  .admin-stats-grid,
  .pretty-tools {
    grid-template-columns: 1fr;
  }

  .admin-stat-card {
    min-height: 118px;
  }
}

/* Dashboard header/sidebar refinement v26 */
.admin-dashboard-hero {
  grid-template-columns: minmax(210px, 300px) minmax(0, 1fr);
  grid-template-areas:
    "brand nav"
    "brand copy";
  align-items: start;
  column-gap: clamp(20px, 3vw, 44px);
  row-gap: 12px;
}

.admin-dashboard-brand {
  grid-area: brand;
  align-self: center;
}

.admin-dashboard-copy {
  grid-area: copy;
  min-width: 0;
}

.admin-dashboard-nav {
  grid-area: nav;
  justify-self: end;
  align-self: start;
  z-index: 4;
  padding: 0;
}

.admin-dashboard-copy h1 {
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.86;
  letter-spacing: -0.06em;
  max-width: 820px;
  margin-top: 0;
  overflow-wrap: normal;
}

.admin-dashboard-copy p:not(.section-label) {
  max-width: 560px;
}

.admin-dashboard-nav .button {
  min-width: 112px;
  min-height: 48px;
  padding: 13px 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.20);
}

.admin-panel-grid {
  grid-template-columns: minmax(0, 1.62fr) minmax(320px, 0.72fr);
  align-items: start;
}

.admin-panel-wide {
  grid-row: auto;
}

.admin-sidebar-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}

.admin-side-panel {
  min-height: 0;
}

.admin-dashboard-page .admin-panel-head h2 {
  letter-spacing: -0.03em;
}

@media (max-width: 1180px) {
  .admin-dashboard-hero {
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr);
    grid-template-areas:
      "brand nav"
      "brand copy";
  }

  .admin-dashboard-copy h1 {
    font-size: clamp(3.1rem, 8vw, 5.2rem);
  }

  .admin-panel-grid {
    grid-template-columns: 1fr;
  }

  .admin-sidebar-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .admin-dashboard-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "copy"
      "nav";
  }

  .admin-dashboard-nav {
    justify-self: stretch;
    width: 100%;
  }

  .admin-dashboard-nav .button {
    flex: 1 1 150px;
  }

  .admin-sidebar-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .admin-dashboard-copy h1 {
    font-size: clamp(2.75rem, 18vw, 4rem);
  }

  .admin-dashboard-nav {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* v28 - Remove fixed decorative bubble layer on homepage.
   The animated bubble overlay could appear as a floating box on the left side
   and did not scroll with the page. */
.real-home-body .bubbles,
.real-home-body .home-bubbles {
  display: none !important;
}

.real-home-body::before,
.real-home-body::after {
  position: absolute;
}

/* v31 - Restore admin dashboard stylesheet after email page CSS overwrite; keep latest email form/response polish. */
    border-radius: 22px;
  }

  .feature,
  .partner-card {
    border-radius: 18px;
  }
}

.button.danger {
  color: #170506;
  background: linear-gradient(90deg, #ff6b6b, #ffd1d1);
  box-shadow: 0 12px 34px rgba(255, 107, 107, 0.22);
}

.button.danger:hover {
  box-shadow: 0 18px 44px rgba(255, 107, 107, 0.30);
}

.small-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 0.86rem;
}

.inline-delete-form {
  display: inline-flex;
  margin: 0;
}

.admin-actions .inline-delete-form {
  display: inline-flex;
}

/* Email center and admin form polish */
.admin-card {
  border: 1px solid rgba(64, 224, 240, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(1, 15, 24, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px);
}

.form-card {
  padding: clamp(20px, 3vw, 28px);
}

.admin-form {
  display: grid;
  gap: 18px;
}

.admin-form label {
  display: block;
  margin: 0 0 8px;
  color: #e7fbff;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.admin-form input[type="text"],
.admin-form input[type="email"],
.admin-form input[type="password"],
.admin-form input[type="number"],
.admin-form input[type="date"],
.admin-form input[type="time"],
.admin-form input[type="url"],
.admin-form select,
.admin-form textarea,
.form-control {
  width: 100%;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(120, 238, 255, 0.24);
  border-radius: 16px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(3, 22, 34, 0.86);
  font: inherit;
  font-weight: 700;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease, transform 180ms ease;
}

.admin-form textarea {
  min-height: 190px;
  line-height: 1.55;
  resize: vertical;
}

.admin-form select {
  appearance: none;
  padding-right: 44px;
  background-image:
    linear-gradient(45deg, transparent 50%, #9cf7ff 50%),
    linear-gradient(135deg, #9cf7ff 50%, transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 17px) 50%,
    0 0;
  background-size: 7px 7px, 7px 7px, 100% 100%;
  background-repeat: no-repeat;
}

.admin-form select option {
  color: #06131d;
  background: #ffffff;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.form-control:focus {
  border-color: rgba(49, 231, 255, 0.78);
  box-shadow:
    0 0 0 4px rgba(32, 200, 223, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.05)),
    rgba(3, 25, 38, 0.94);
}

.admin-form .two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.yes-no-options {
  padding: 16px;
  border: 1px solid rgba(255, 180, 74, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 180, 74, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.035);
}

.check-row {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px !important;
  color: #f3fbff !important;
  text-transform: none !important;
  letter-spacing: 0.02em !important;
  font-size: 1rem !important;
  cursor: pointer;
}

.check-row input[type="checkbox"] {
  width: 22px;
  height: 22px;
  min-height: 0;
  accent-color: var(--aqua);
}

.compact-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 18px;
}

.email-compose-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 760px) {
  .admin-form .two-col,
  .compact-stats {
    grid-template-columns: 1fr;
  }

  .form-card {
    padding: 18px;
  }

  .admin-form textarea {
    min-height: 170px;
  }
}

/* Email response page polish */
.response-card {
  max-width: 760px;
}

.response-meta {
  display: grid;
  gap: 6px;
  margin: 18px 0;
  color: rgba(239, 251, 255, .82);
}

.response-meta p {
  margin: 0;
}

.response-answer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 209, 100, .42);
  background: linear-gradient(135deg, rgba(255, 184, 77, .25), rgba(255, 229, 154, .14));
  color: #ffe7a4;
  font-weight: 900;
  letter-spacing: .03em;
}

.response-answer.yes {
  border-color: rgba(123, 255, 207, .5);
  background: linear-gradient(135deg, rgba(28, 214, 158, .26), rgba(123, 255, 207, .16));
  color: #b8ffe9;
}

.response-answer.no {
  border-color: rgba(255, 132, 145, .5);
  background: linear-gradient(135deg, rgba(255, 116, 130, .22), rgba(255, 194, 153, .12));
  color: #ffc8ce;
}

.response-message {
  margin-top: 16px;
}

.response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button.danger-soft {
  background: linear-gradient(135deg, #ff7d8d, #ffc28a);
  color: #07151d;
  border-color: rgba(255, 211, 180, .45);
  box-shadow: 0 10px 26px rgba(255, 125, 141, .22);
}

/* v32 - Manage Users page rebuild / readability fix */
.users-admin-body .admin-wrap {
  max-width: 1220px;
}

.users-admin-body .admin-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin-bottom: 20px;
}

.users-admin-body .admin-header h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .88;
  margin: 14px 0 8px;
}

.users-admin-body .admin-actions {
  justify-content: flex-end;
  align-self: start;
  padding-top: 12px;
}

.users-admin-body .form-card,
.users-admin-body .admin-card {
  border-color: rgba(73, 221, 240, .26);
  background:
    radial-gradient(circle at 0% 0%, rgba(80, 220, 240, .10), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    rgba(2, 18, 28, .84);
}

.users-admin-body .launch-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.users-admin-body .launch-title h2 {
  margin: 0;
  font-size: clamp(1.45rem, 2.4vw, 2.15rem);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.users-admin-body .admin-form,
.users-admin-body .compact-form {
  display: grid;
  gap: 18px;
}

.users-admin-body .form-grid,
.users-admin-body .two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.users-admin-body .form-button-align {
  display: flex;
  align-items: end;
}

.users-admin-body .admin-form label,
.users-admin-body .user-row-card label {
  display: block;
  margin: 0 0 8px;
  color: rgba(228, 251, 255, .92);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .085em;
  line-height: 1.2;
  text-transform: uppercase;
}

.users-admin-body .admin-form input[type="text"],
.users-admin-body .admin-form input[type="email"],
.users-admin-body .admin-form input[type="password"],
.users-admin-body .admin-form input[type="number"],
.users-admin-body .admin-form select,
.users-admin-body .user-row-card input[type="text"],
.users-admin-body .user-row-card input[type="email"],
.users-admin-body .user-row-card input[type="password"],
.users-admin-body .user-row-card input[type="number"],
.users-admin-body .user-row-card select {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(101, 231, 248, .25) !important;
  border-radius: 16px;
  color: #f3fdff !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    rgba(4, 22, 34, .92) !important;
  font: inherit;
  font-weight: 800;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.users-admin-body .admin-form input::placeholder,
.users-admin-body .user-row-card input::placeholder {
  color: rgba(215, 237, 242, .58);
}

.users-admin-body .admin-form input:focus,
.users-admin-body .admin-form select:focus,
.users-admin-body .user-row-card input:focus,
.users-admin-body .user-row-card select:focus {
  border-color: rgba(70, 231, 255, .78) !important;
  box-shadow: 0 0 0 4px rgba(63, 220, 244, .13), inset 0 1px 0 rgba(255,255,255,.08);
}

.users-admin-body select option {
  color: #06131d !important;
  background: #fff !important;
}

.users-admin-body .check-row {
  display: inline-flex !important;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 12px 14px;
  min-height: 50px;
  border: 1px solid rgba(101, 231, 248, .18);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
  color: #effdff !important;
  font-size: .95rem !important;
  font-weight: 900;
  letter-spacing: .02em !important;
  text-transform: none !important;
}

.users-admin-body .check-row input[type="checkbox"] {
  width: 22px !important;
  height: 22px !important;
  min-height: 22px !important;
  padding: 0 !important;
  accent-color: #3de8fb;
}

.users-admin-body .customer-search-results {
  margin-top: 18px;
}

.users-admin-body .table-wrap,
.users-admin-body .compact-table {
  width: 100%;
  overflow-x: auto;
  border: 1px solid rgba(101, 231, 248, .18);
  border-radius: 18px;
  background: rgba(2, 14, 23, .38);
}

.users-admin-body table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.users-admin-body th,
.users-admin-body td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  text-align: left;
}

.users-admin-body th {
  color: rgba(219, 248, 255, .78);
  font-size: .75rem;
  font-weight: 950;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.users-admin-body .user-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.users-admin-body .user-row-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 1px solid rgba(75, 223, 241, .24);
  border-radius: 24px;
  background:
    radial-gradient(circle at 10% 0%, rgba(92, 232, 250, .13), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.024)),
    rgba(5, 22, 33, .74);
  box-shadow: 0 18px 42px rgba(0,0,0,.22);
}

.users-admin-body .user-row-card + .user-row-card {
  margin-top: 0;
}

.users-admin-body .user-row-main {
  display: grid;
  grid-template-columns: minmax(170px, 1.1fr) minmax(210px, 1.25fr) minmax(140px, .75fr) minmax(140px, .75fr) minmax(180px, 1fr) minmax(190px, 1fr);
  gap: 14px;
  align-items: end;
}

.users-admin-body .user-row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 0;
  color: rgba(214, 235, 240, .82);
  font-size: .91rem;
}

.users-admin-body .user-row-meta > span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
}

.users-admin-body .user-row-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 2px;
}

.users-admin-body .user-row-actions .button {
  min-height: 46px;
  padding: 11px 18px;
}

.users-admin-body .danger-button,
.users-admin-body .button.danger-button {
  background: linear-gradient(135deg, rgba(255, 110, 128, .28), rgba(255, 181, 110, .18)) !important;
  color: #ffd7d7 !important;
  border-color: rgba(255, 134, 150, .48) !important;
  box-shadow: none !important;
}

@media (max-width: 1100px) {
  .users-admin-body .user-row-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .users-admin-body .admin-header {
    grid-template-columns: 1fr;
  }
  .users-admin-body .admin-actions {
    justify-content: flex-start;
    padding-top: 0;
  }
  .users-admin-body .form-grid,
  .users-admin-body .two-col,
  .users-admin-body .user-row-main {
    grid-template-columns: 1fr;
  }
  .users-admin-body .button,
  .users-admin-body .form-button-align .button,
  .users-admin-body .user-row-actions .button {
    width: 100%;
  }
  .users-admin-body .launch-title {
    flex-direction: column;
  }
}
