body.tap-protected-shell {
  visibility: visible;
  opacity: 1;
}

html.tap-shell-ready body,
body:not(.tap-protected-shell) {
  visibility: visible;
  opacity: 1;
}

html.tap-auth-pending:not(.tap-auth-soft) body.tap-protected-shell {
  overflow: hidden;
}

html.tap-auth-pending:not(.tap-auth-soft) body.tap-protected-shell::after {
  content: "A confirmar sessão...";
  position: fixed;
  inset: 0;
  z-index: 10020;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background:
    radial-gradient(circle at 42% 18%, rgba(163, 230, 53, 0.10), transparent 32%),
    linear-gradient(135deg, rgba(8, 9, 11, 0.98), rgba(14, 16, 18, 0.98));
  pointer-events: all;
}

html.tap-auth-pending:not(.tap-auth-soft) body.tap-protected-shell:has(.portal-shell)::after {
  left: 248px;
}

html.tap-auth-soft body.tap-protected-shell main.portal-shell,
html.tap-auth-soft body.tap-protected-shell .chat-container,
html.tap-auth-soft body.tap-protected-shell .compact-shell {
  opacity: 0.72;
  transition: opacity 0.16s ease;
}

body.tap-protected-shell:has(.portal-shell) {
  padding-left: 248px;
}

body.tap-protected-shell:has(.portal-shell)::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 19;
  width: 248px;
  background:
    linear-gradient(rgba(12, 12, 14, 0.98), rgba(12, 12, 14, 0.98)),
    url("../assets/background.jpg") center/cover no-repeat;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 18px 0 44px rgba(0, 0, 0, 0.22);
}

body.tap-has-left-menu::before {
  display: block;
}

body.tapfeed-standalone {
  padding-left: 292px;
}

body.tapfeed-standalone::before,
body.tapfeed-standalone.tap-has-left-menu::before {
  display: none !important;
}

.tap-side-panel {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 20;
  width: 248px;
  padding: 92px 22px 22px;
  background: rgba(12, 12, 14, 0.98);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 18px 0 44px rgba(0, 0, 0, 0.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}

.tap-side-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tap-side-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.tap-side-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #a3e635;
  background: #181818;
  flex: 0 0 auto;
}

.tap-side-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tap-side-user strong,
.tap-side-user span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tap-side-user strong {
  color: #fff;
  font-size: 14px;
}

.tap-side-user span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  margin-top: 2px;
}

.tap-side-links {
  display: grid;
  gap: 8px;
}

.tap-side-links a,
.tap-side-logout {
  width: 100%;
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.035);
  text-decoration: none;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}

.tap-side-links a.active {
  color: #a3e635;
  border-color: rgba(163, 230, 53, 0.35);
  background: rgba(163, 230, 53, 0.08);
}

.tap-side-logout {
  margin-top: auto;
  color: #fb7185;
  border-color: rgba(251, 113, 133, 0.24);
  background: rgba(251, 113, 133, 0.08);
}

/* Skeleton animation and placeholders */
@keyframes tap-skeleton-pulse {
  0% {
    background-color: rgba(255, 255, 255, 0.03);
  }
  50% {
    background-color: rgba(255, 255, 255, 0.08);
  }
  100% {
    background-color: rgba(255, 255, 255, 0.03);
  }
}

.tap-skeleton {
  display: inline-block;
  min-width: 50px;
  height: 1.2em;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.05);
  animation: tap-skeleton-pulse 1.4s ease-in-out infinite;
  color: transparent !important;
  text-shadow: none !important;
  pointer-events: none;
  vertical-align: middle;
}

/* Skeleton Card placeholder */
.tap-skeleton-card {
  height: 120px;
  background-color: rgba(18, 18, 18, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
  animation: tap-skeleton-pulse 1.4s ease-in-out infinite;
  pointer-events: none;
}

/* Skeleton Chat Item placeholder */
.tap-skeleton-chat-item {
  height: 72px;
  margin: 8px 12px;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  animation: tap-skeleton-pulse 1.4s ease-in-out infinite;
  pointer-events: none;
}

html.tap-route-transition::before {
  display: none !important;
}

html.tap-route-transition body {
  visibility: visible;
  opacity: 1;
}

body::after {
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.86)), url("../assets/background.jpg") center/cover no-repeat;
}

body {
  background:
    linear-gradient(rgba(10, 10, 10, 0.78), rgba(10, 10, 10, 0.92)),
    url("../assets/background.jpg") center/cover fixed no-repeat;
}

.solid-panel {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: rgba(18, 18, 18, 0.94);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
}

.compact-shell {
  max-width: 980px;
}

.message[hidden] {
  display: none;
}

.firebase-logout {
  color: #888;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
}

.firebase-logout:hover {
  color: #fff;
  background: #1a1a1a;
}

.event-thumb {
  width: min(320px, 100%);
  height: 480px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 12px;
  margin-bottom: 14px;
  display: block;
}

.event-card.has-image {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.event-card.has-image .event-thumb ~ .section-head,
.event-card.has-image .event-thumb ~ .table-lite,
.event-card.has-image .event-thumb ~ .event-meta-grid,
.event-card.has-image .event-thumb ~ .note,
.event-card.has-image .event-thumb ~ .button-row {
  grid-column: 2;
}

.event-card.has-image .event-thumb {
  grid-row: 1 / span 4;
  grid-column: 1;
}

.nav .session-name {
  color: #a3e635;
  font-size: 13px;
  font-weight: 600;
}

.header .nav-links,
body.tap-nav-ready .header .nav-links {
  display: flex;
}

.header .nav-links li:nth-child(n+5),
.header .nav-links > a:nth-child(n+5) {
  display: none;
}

.settings-role-group .section-head h2,
.settings-role-group .section-head .eyebrow,
.settings-role-list .settings-user h2,
.settings-role-list .settings-user .note,
.settings-role-list .settings-user .eyebrow {
  color: #fff;
}

.event-organizer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.event-organizer-badge img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

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

.event-meta-grid div {
  min-width: 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.event-meta-grid span,
.event-meta-grid strong {
  display: block;
  overflow-wrap: anywhere;
}

.event-meta-grid span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  margin-bottom: 4px;
}

.event-meta-grid strong {
  color: #fff;
  font-size: 14px;
}

.tap-modal[hidden] {
  display: none;
}

.tap-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(10px);
}

.tap-modal-panel {
  width: min(720px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 18, 0.98);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.42);
}

.event-filter-row {
  margin-top: 10px;
}

.event-filter-row .active {
  background: linear-gradient(135deg, #d7ff73, #a3e635 60%, #77c91f);
  color: #050505;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(163, 230, 53, 0.22);
}

[data-events-list] {
  grid-template-columns: repeat(auto-fit, minmax(420px, 680px));
  align-items: start;
}

[data-venues-list] {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: start;
  align-items: start;
}

[data-organizers-list] {
  grid-template-columns: repeat(auto-fit, minmax(220px, 280px));
  justify-content: start;
  align-items: start;
}

[data-venues-list] .venue-card,
[data-organizers-list] .organizer-card {
  min-height: 178px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

[data-venues-list] .venue-card:hover,
[data-organizers-list] .organizer-card:hover {
  transform: translateY(-2px);
  border-color: rgba(163, 230, 53, 0.32);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

[data-venues-list] .venue-card h2,
[data-organizers-list] .organizer-card h2 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
}

.finance-filter-panel,
.finance-chart-panel {
  margin-top: 2rem;
}

.finance-filter-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.finance-chip {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.finance-chip input {
  width: 16px;
  height: 16px;
  accent-color: #a3e635;
}

.finance-chip:has(input:checked) {
  color: #f8fafc;
  border-color: rgba(163, 230, 53, 0.38);
  background: rgba(163, 230, 53, 0.1);
}

.finance-chart-box {
  position: relative;
  width: 100%;
  height: 350px;
  margin-top: 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  padding: 14px;
}

.finance-chart-box canvas {
  width: 100% !important;
  height: 100% !important;
}

@media (max-width: 720px) {
  .finance-filter-row {
    align-items: stretch;
    flex-direction: column;
  }

  .finance-chip,
  .finance-filter-row .primary-action {
    width: 100%;
    justify-content: center;
  }

  .finance-chart-box {
    height: 300px;
  }
}

.organizer-card .table-row {
  grid-template-columns: 120px minmax(0, 1fr);
}

.organizer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.organizer-cta h2,
.organizer-cta p {
  margin: 0;
}

.organizer-cta p {
  margin-top: 8px;
  color: #a8a8a8;
}

.organizer-logo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.dashboard-highlight {
  min-height: 190px;
}

.solid-panel input,
.solid-panel select,
.solid-panel textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  outline: none;
}

.solid-panel label {
  display: grid;
  gap: 8px;
  color: #d8d8d8;
  font-weight: 600;
}

.solid-panel .wide {
  grid-column: 1 / -1;
}

.admin-search {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.settings-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.settings-shell {
  max-width: 1180px;
}

.settings-overview {
  align-items: start;
}

.settings-shell a.solid-panel,
.settings-shell a.solid-panel:visited,
.settings-shell .settings-grid a,
.settings-shell .settings-grid a:visited {
  color: #fff;
  text-decoration: none;
}

.settings-shell a.solid-panel h2,
.settings-shell a.solid-panel p,
.settings-shell .settings-grid span {
  color: #fff;
}

.settings-directory-toolbar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: stretch;
}

.settings-directory-toolbar.glass-card {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045) 44%, rgba(163, 230, 53, 0.08)),
    rgba(12, 12, 12, 0.44);
  backdrop-filter: blur(24px) saturate(155%);
  -webkit-backdrop-filter: blur(24px) saturate(155%);
}

.settings-directory-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.settings-directory-search .admin-search {
  width: 100%;
  min-height: 68px;
  border-radius: 18px;
  font-size: 16px;
  padding: 0 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.065)),
    rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 16px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.settings-directory-search .admin-search:focus {
  border-color: rgba(163, 230, 53, 0.5);
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 0 0 3px rgba(163, 230, 53, 0.1),
    0 16px 38px rgba(0, 0, 0, 0.22);
}

@media (max-width: 860px) {
  body.tap-protected-shell:has(.portal-shell) {
    padding-left: 0;
  }

  body.tap-protected-shell:has(.portal-shell)::before,
  .tap-side-panel {
    display: none;
  }

  .settings-directory-toolbar,
  .settings-directory-search {
    grid-template-columns: 1fr;
  }
}

.settings-inline-note {
  margin-top: 12px;
}

.settings-fees-panel {
  display: grid;
  gap: 18px;
}

.settings-fee-preview {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.settings-fee-preview strong {
  display: block;
  margin: 8px 0;
  font-size: 32px;
  color: #a3e635;
}

.settings-fee-form {
  margin-top: 0;
}

.settings-role-group {
  display: grid;
  gap: 12px;
  align-content: start;
}

.settings-role-toggle {
  width: 100%;
  text-align: left;
  cursor: pointer;
}

.settings-role-list {
  display: grid;
  gap: 12px;
}

.settings-user {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
}

.settings-user-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.settings-user-body {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
  align-items: start;
}

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

.settings-role-editor > .inline-check,
.settings-role-editor > .note {
  grid-column: 1 / -1;
}

.settings-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.settings-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: #f3f3f3;
  font-size: 12px;
  font-weight: 700;
}

.settings-badge.success {
  border-color: rgba(163, 230, 53, 0.32);
  color: #d7ff73;
}

.settings-badge.danger {
  border-color: rgba(251, 113, 133, 0.32);
  color: #fecaca;
}

.settings-badge.warning {
  border-color: rgba(250, 204, 21, 0.32);
  color: #fde68a;
}

.settings-actions {
  display: grid;
  gap: 10px;
  align-content: start;
}

.settings-actions select {
  min-height: 44px;
  border-radius: 10px;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 12px;
}

.inline-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #d8d8d8;
}

.settings-chat-check {
  min-height: 46px;
  padding: 0 4px;
}

.chat-layout {
  display: grid;
  grid-template-columns: minmax(300px, 390px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.chat-card {
  margin-bottom: 12px;
}

.chat-head {
  display: flex;
  gap: 12px;
  align-items: center;
}

.chat-head img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
}

.chat-thread {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.chat-message {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
}

.chat-message.admin {
  border-left: 3px solid #a3e635;
}

.chat-reply {
  display: grid;
  gap: 10px;
}

.chat-reply textarea {
  min-height: 110px;
  border-radius: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.chat-reply input {
  min-height: 46px;
  border-radius: 12px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.admin-sudo-box {
  max-width: 760px;
}

.coming-soon-list {
  display: grid;
  gap: 12px;
}

.wallet-search input {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.wallet-search input::placeholder {
  color: #8d8d8d;
}

.wallet-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.wallet-users-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.wallet-user-card {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  text-align: left;
  cursor: pointer;
}

.wallet-user-skeleton {
  cursor: default;
  pointer-events: none;
}

.wallet-user-card.active {
  border-color: rgba(163, 230, 53, 0.75);
  background: rgba(163, 230, 53, 0.12);
}

.wallet-user-card strong,
.wallet-user-card small {
  display: block;
}

.wallet-user-card small {
  margin-top: 5px;
  color: #a8a8a8;
}

.wallet-detail-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.wallet-info-grid .table-row {
  grid-template-columns: 180px minmax(0, 1fr);
}

.wallet-transaction-row {
  grid-template-columns: 1.15fr 0.7fr 1.35fr 0.75fr 0.7fr 0.95fr;
}

.wallet-transaction-row small {
  display: block;
  margin-top: 4px;
  color: #8d8d8d;
  overflow-wrap: anywhere;
}

.success {
  color: #a3e635;
}

.danger {
  color: #fb7185;
}

#tap-wallet-confirm-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10020;
}

#tap-wallet-confirm-modal.open {
  display: block;
}

.tap-wallet-modal-backdrop {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.tap-wallet-modal-box {
  width: min(420px, 100%);
  padding: 30px 26px 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 16, 18, 0.98);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.tap-wallet-modal-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(163, 230, 53, 0.12);
  border: 1px solid rgba(163, 230, 53, 0.32);
  color: #a3e635;
  font-size: 26px;
  font-weight: 800;
}

.tap-wallet-modal-box h2 {
  margin: 0 0 10px;
}

.tap-wallet-modal-box p {
  margin: 0;
  color: #a8a8a8;
  line-height: 1.6;
}

.tap-wallet-modal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.tap-wallet-modal-cancel,
.tap-wallet-modal-confirm {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0 16px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.tap-wallet-modal-cancel {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.tap-wallet-modal-confirm {
  background: linear-gradient(135deg, #d7ff73, #a3e635 60%, #77c91f);
  color: #050505;
  border-color: transparent;
}

.wallet-skeleton-line,
.wallet-skeleton-button {
  display: inline-flex;
  max-width: 100%;
  color: transparent !important;
}

.wallet-skeleton-tag {
  width: 96px;
  height: 12px;
  border-radius: 999px;
}

.wallet-skeleton-title {
  width: min(280px, 70%);
  height: 28px;
  border-radius: 10px;
}

.wallet-skeleton-name {
  width: 148px;
  height: 18px;
  border-radius: 8px;
}

.wallet-skeleton-email {
  width: 172px;
  height: 12px;
  border-radius: 999px;
}

.wallet-skeleton-balance,
.wallet-skeleton-value {
  width: 132px;
  height: 26px;
  border-radius: 10px;
}

.wallet-skeleton-count {
  width: 72px;
  height: 26px;
  border-radius: 10px;
}

.wallet-skeleton-caption {
  width: 110px;
  height: 11px;
  border-radius: 999px;
}

.wallet-skeleton-label {
  width: 92px;
  height: 14px;
  border-radius: 999px;
}

.wallet-skeleton-field {
  width: min(220px, 100%);
  height: 15px;
  border-radius: 999px;
}

.wallet-skeleton-button {
  width: 170px;
  height: 44px;
  border-radius: 999px;
}

.wallet-skeleton-id {
  width: 120px;
  height: 15px;
  border-radius: 999px;
}

.wallet-skeleton-short {
  width: 72px;
  height: 15px;
  border-radius: 999px;
}

.wallet-skeleton-description {
  width: min(220px, 100%);
  height: 15px;
  border-radius: 999px;
}

.wallet-skeleton-date {
  width: 116px;
  height: 15px;
  border-radius: 999px;
}

@media (max-width: 760px) {
  .event-card.has-image {
    grid-template-columns: 1fr;
  }

  .event-card.has-image .event-thumb,
  .event-card.has-image .event-thumb ~ .section-head,
  .event-card.has-image .event-thumb ~ .table-lite,
  .event-card.has-image .event-thumb ~ .event-meta-grid,
  .event-card.has-image .event-thumb ~ .note,
  .event-card.has-image .event-thumb ~ .button-row {
    grid-column: auto;
    grid-row: auto;
  }

  .event-thumb {
    width: 100%;
    height: 420px;
  }

  .wallet-layout,
  .wallet-detail-metrics,
  .dashboard-grid,
  .chat-layout,
  .settings-user {
    grid-template-columns: 1fr;
  }

  .settings-fee-preview,
  .settings-user-head,
  .settings-user-body {
    display: grid;
    grid-template-columns: 1fr;
  }

  .settings-badges {
    justify-content: flex-start;
  }

  .settings-role-editor {
    grid-template-columns: 1fr;
  }

  .organizer-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .wallet-transaction-row,
  .wallet-info-grid .table-row {
    grid-template-columns: 1fr;
  }

  .wallet-skeleton-title,
  .wallet-skeleton-description,
  .wallet-skeleton-field {
    width: 100%;
  }
}
