
/*
  ViDsocial Website UI Kit v2
  Standalone design-system CSS reference.

  Intended use:
  - This file is broken out so it can be reviewed, copied, and evolved toward the main website/plugin CSS.
  - Do not blindly drop this into production without mapping existing selectors and testing pages.
  - Codex should use this as the visual standard and centralization target.

  Style direction:
  - Warm cream/purple member-site feel.
  - Controlled red accent.
  - Vintage trailer/member-community tone.
  - Modernized internal UI without making each page its own little website.
*/

:root {
  --vs-cream: #f4e6c8; 
  --vs-paper: #f8eedc;
  --vs-paper-light: #fff9ef;
  --vs-surface: #ffffff;
  --vs-ink: #2b2527;
  --vs-muted: #6f6264;
  --vs-line: #e2cfaa;

  --vs-purple: #743361;
  --vs-purple-dark: #552448;
  --vs-purple-soft: #ead9e5;

  /* Legacy alias names inside the kit. These now point to purple, not brown. */
  --vs-brown: var(--vs-purple);
  --vs-brown-dark: var(--vs-purple-dark);
  --vs-brown-soft: var(--vs-purple-soft);

  --vs-teal: #08aaa7;
  --vs-teal-dark: #078f8d;
  --vs-teal-soft: #dff7f5;

  --vs-red: #b60018;
  --vs-red-dark: #8f0014;
  --vs-red-soft: #f8dde0;

  --vs-gold: #d7a54b;
  --vs-green: #3f7a55;
  --vs-blue: #3b628c;

  --vs-radius: 14px;
  --vs-radius-sm: 9px;
  --vs-shadow: 0 18px 44px rgba(65, 44, 37, 0.18);
  --vs-width: 1180px;

  --vs-font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --vs-font-display: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--vs-ink);
  font-family: var(--vs-font-body);
  line-height: 1.45;
}

a {
  color: var(--vs-red-dark);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--vs-brown-dark);
  text-decoration: underline;
}

code {
  padding: 0.08rem 0.32rem;
  border-radius: 6px;
  background: var(--vs-brown-soft);
  color: var(--vs-brown-dark);
  font-size: 0.88em;
}

/* UI kit shell */

.kit-shell {
  width: min(100% - 32px, var(--vs-width));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.kit-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  margin-bottom: 18px;
}

.kit-hero-card,
.kit-note,
.kit-section,
.kit-example {
  border: 1px solid rgba(85, 36, 72, 0.16);
  border-radius: var(--vs-radius);
  background: rgba(255, 249, 239, 0.92);
  box-shadow: var(--vs-shadow);
}

.kit-hero-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
}

.kit-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(116, 51, 97, 0.18), transparent 58%),
    linear-gradient(0deg, rgba(8, 170, 167, 0.10), transparent 46%);
  pointer-events: none;
}

.kit-hero-card > * {
  position: relative;
}

.kit-kicker {
  margin: 0 0 10px;
  color: var(--vs-red-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kit-hero-card h1 {
  margin: 0 0 10px;
  font-family: var(--vs-font-display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
}

.kit-hero-card p {
  max-width: 780px;
  margin: 0;
  color: var(--vs-muted);
  font-size: 1.05rem;
}

.kit-note {
  padding: 16px;
  background:
    linear-gradient(rgba(116, 51, 97, 0.92), rgba(116, 51, 97, 0.92)),
    repeating-linear-gradient(0deg, #7a3867 0 10px, #663057 11px 22px);
  color: #fff;
}

.kit-note h2 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.kit-note ul {
  margin: 0;
  padding-left: 1.1rem;
}

.kit-note li {
  margin: 0.35rem 0;
}

.kit-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  margin: 0 0 20px;
  border: 1px solid rgba(85, 36, 72, 0.18);
  border-radius: 0;
  background:
    linear-gradient(rgba(116, 51, 97, 0.94), rgba(116, 51, 97, 0.94)),
    repeating-linear-gradient(90deg, #743361 0 20px, #673059 22px 42px);
  box-shadow: 0 8px 24px rgba(63, 43, 35, 0.12);
  backdrop-filter: blur(12px);
  overflow-x: auto;
}

.kit-nav-inner {
  display: flex;
  gap: 4px;
  min-width: max-content;
  padding: 8px;
}

.kit-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.kit-nav a:hover,
.kit-nav a:focus {
  background: var(--vs-teal);
  color: #fff;
}

.kit-section {
  margin: 0 0 22px;
  padding: 20px;
  background:
    linear-gradient(rgba(248, 238, 220, 0.94), rgba(248, 238, 220, 0.94)),
    repeating-linear-gradient(0deg, #f2e3c6 0 16px, #ead8b8 18px 34px);
}

.kit-section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--vs-line);
}

.kit-section-header h2 {
  margin: 0;
  color: var(--vs-red);
  font-family: var(--vs-font-display);
  font-size: 1.72rem;
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(85, 36, 72, 0.18);
}

.kit-section-header p {
  margin: 5px 0 0;
  color: var(--vs-muted);
}

.kit-tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--vs-teal);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

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

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

.kit-example {
  padding: 16px;
  background: var(--vs-surface);
  box-shadow: none;
}

.kit-example > h3 {
  margin: 0 0 12px;
  color: var(--vs-brown-dark);
  font-size: 1rem;
}

.kit-class-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--vs-line);
}

.kit-class-list code {
  font-size: 0.76rem;
}

/* Typography */

.vs-h1,
.vs-h2,
.vs-h3 {
  margin: 0;
  color: var(--vs-red);
  font-family: var(--vs-font-display);
  line-height: 1.05;
  text-shadow: 1px 1px 0 rgba(85, 36, 72, 0.18);
  margin-bottom: 10px;
}

.vs-h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.vs-h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.vs-h3 {
  font-size: 1.38rem;
}

.vs-subtitle {
  margin: 0 0 4px;
  color: var(--vs-purple);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.vs-body {
  margin: 0;
  color: var(--vs-ink);
  font-family: var(--vs-font-body);
  line-height: 1.45;
}

/* Shared ViDsocial shell */

.ViDsocial {
  color: var(--vs-ink);
}

.ViDsocial-panel,
.ViDsocial-card,
.ViDsocial-form-card {
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  box-shadow: 0 14px 34px rgba(65, 44, 37, 0.14);
}

.ViDsocial-panel {
  padding: 16px;
}

.ViDsocial-card {
  overflow: hidden;
}

.ViDsocial-card-body {
  margin: 0;
  color: var(--vs-ink);
  font-family: var(--vs-font-body);
  line-height: 1.45;
  padding: 20px;
}

.ViDsocial-card-title {
  margin: 0 0 6px;
  color: var(--vs-brown-dark);
  font-family: var(--vs-font-display);
  font-size: 1.2rem;
}

.ViDsocial-card-meta {
  margin: 0;
  color: var(--vs-muted);
  font-size: 0.9rem;
}

/* Profile header */

.ViDsocial-cover {
  display: flex;
  align-items: flex-end;
  min-height: 170px;
  padding: 16px;
  border-radius: var(--vs-radius) var(--vs-radius) 0 0;
  background:
    linear-gradient(135deg, rgba(63, 43, 35, 0.72), rgba(184, 74, 61, 0.38)),
    repeating-linear-gradient(45deg, #d8b17c 0 12px, #c58a6b 12px 24px);
  color: #fff;
}

.ViDsocial-profile-header {
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  box-shadow: 0 14px 34px rgba(65, 44, 37, 0.14);
}

.ViDsocial-profile-header-main {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px;
}

.ViDsocial-avatar,
.ViDsocial-avatar-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
  font-weight: 900;
}

.ViDsocial-avatar {
  width: 86px;
  height: 86px;
  border: 4px solid #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.13);
  font-size: 1.5rem;
}

.ViDsocial-avatar-sm {
  width: 42px;
  height: 42px;
  font-size: 0.9rem;
}

.ViDsocial-profile-title {
  margin: 0;
  font-family: var(--vs-font-display);
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.05;
}

.ViDsocial-profile-meta,
.ViDsocial-trailer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-top: 8px;
  color: var(--vs-muted);
  font-size: 0.92rem;
}

.ViDsocial-trailer-meta {
  gap: 8px;
  margin-top: 10px;
}

.ViDsocial-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--vs-brown-soft);
  color: var(--vs-brown-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.ViDsocial-pill.red {
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
}

/* Main nav and subnav */

.ViDsocial-main-nav,
.sotf-menu-bar,
.ViDsocial-profile-navagation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 10px;
  border-radius: var(--vs-radius);
  background: var(--vs-brown-dark);
}

.ViDsocial-main-nav a,
.sotf-menu-bar a,
.ViDsocial-profile-navagation a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
}

.ViDsocial-main-nav a.active,
.ViDsocial-main-nav a:hover,
.ViDsocial-main-nav a:focus,
.sotf-menu-bar a.active,
.sotf-menu-bar a.is-active,
.sotf-menu-bar a:hover,
.sotf-menu-bar a:focus,
.ViDsocial-profile-navagation a.active,
.ViDsocial-profile-navagation a.is-active,
.ViDsocial-profile-navagation a:hover,
.ViDsocial-profile-navagation a:focus {
  background: var(--vs-teal);
  color: #fff;
  text-decoration: none;
}

.ViDsocial-profile-subNavagation {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  margin-top: 15px !important;   
}

.ViDsocial-profile-subNavagation a,
.tabToggle {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--vs-brown);
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-profile-subNavagation a.activeTab,
.tabToggle.activeTab {
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-section-title {
  margin: 0 0 14px;
}

/* Search */

.ViDsocial-searchWidget {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  background: var(--vs-purple-soft);
}

.sotf-member-shellbar {
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center;
  min-height: 70px;
}

.sotf-member-shellbar .sotf-search-widget-home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  color: var(--vs-red-dark);
  text-decoration: none;
}

.sotf-member-shellbar .sotf-search-widget-home:hover,
.sotf-member-shellbar .sotf-search-widget-home:focus {
  background: #fff;
  color: var(--vs-purple-dark);
  text-decoration: none;
}

.sotf-member-shellbar .sotf-shellbar-title {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.sotf-member-shellbar .sotf-shellbar-title h2 {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.1;
}

.sotf-member-shellbar .sotf-shellbar-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--vs-muted);
  font-size: 0.88rem;
  font-weight: 750;
}

.sotf-member-shellbar .sotf-shellbar-breadcrumb a {
  color: var(--vs-red-dark);
  text-decoration: none;
}

.sotf-member-shellbar .sotf-shellbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
  justify-self: end;
}

.sotf-member-shellbar .sotf-shellbar-member {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(47, 39, 48, 0.14);
  cursor: pointer;
  padding: 0;
}

.sotf-member-shellbar .sotf-shellbar-member-placeholder {
  background: #fff;
  color: var(--vs-red-dark);
  font-size: 1.2rem;
}

.sotf-member-shellbar .sotf-shellbar-member-placeholder i {
  line-height: 1;
}

.sotf-member-shellbar .sotf-shellbar-member img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sotf-member-shellbar .sotf-search-widget-logout {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--vs-red);
  border-radius: 0;
  background: var(--vs-red);
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.sotf-member-shellbar .sotf-screen-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .sotf-member-shellbar {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
  }

  .sotf-member-shellbar .sotf-search-widget-logout {
    display: none;
  }
}

.sotf-member-shellbar .sotf-search-widget-logout:hover,
.sotf-member-shellbar .sotf-search-widget-logout:focus {
  background: var(--vs-red-dark);
  border-color: var(--vs-red-dark);
}

.sotf-host-waiver-alerts {
  display: grid;
  gap: 10px;
  margin: 12px 0 18px;
}

.sotf-host-waiver-alert {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.sotf-host-waiver-alert div {
  display: grid;
  gap: 2px;
}

.sotf-host-waiver-alert strong {
  color: var(--vs-red-dark);
}

.sotf-host-waiver-alert span {
  color: var(--vs-ink);
}

@media (max-width: 640px) {
  .sotf-host-waiver-alert {
    align-items: stretch;
    flex-direction: column;
  }
}

.waverPopup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.waverBlackOutBack {
  position: absolute;
  inset: 0;
  background: rgba(28, 20, 28, 0.78);
  backdrop-filter: blur(2px);
}

.waverPopupContainer {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(100%, 520px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(105, 53, 92, 0.2);
  border-radius: var(--vs-radius);
  background: var(--vs-paper-light);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  text-align: center;
}

.waverPopupIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--vs-purple-soft);
  color: var(--vs-purple-dark);
  font-size: 1.25rem;
}

.waverPopupContainer h2 {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-size: clamp(1.6rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.waverPopupContainer p {
  margin: 0;
  max-width: 390px;
  color: var(--vs-ink);
}

.waverPopupActions {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.waverAccept_btn,
.waverAccept_btn:hover,
.waverAccept_btn:focus {
  color: #fff;
  text-transform: uppercase;
}

@media (max-width: 520px) {
  .waverPopupContainer {
    padding: 22px 18px;
  }

  .waverAccept_btn {
    width: 100%;
  }
}

.sotf-shell-drawer {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
}

.sotf-shell-drawer-backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(47, 39, 48, 0.42);
  opacity: 0;
  transition: opacity 180ms ease;
}

.sotf-shell-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  width: min(88vw, 316px);
  height: 100%;
  padding: 18px 12px 22px;
  border-left: 1px solid var(--vs-line);
  background: #f5f0f3;
  box-shadow: -18px 0 34px rgba(47, 39, 48, 0.18);
  transform: translateX(102%);
  transition: transform 220ms ease;
}

.sotf-shell-drawer.is-open {
  pointer-events: auto;
}

.sotf-shell-drawer.is-open .sotf-shell-drawer-backdrop {
  opacity: 1;
}

.sotf-shell-drawer.is-open .sotf-shell-drawer-panel {
  transform: translateX(0);
}

.sotf-shell-drawer-open {
  overflow: hidden;
}

.sotf-shell-drawer-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 8px;
}

.sotf-shell-drawer-header p {
  margin: 0 0 3px;
  color: #6f646c;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sotf-shell-drawer-header h2 {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-base);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.1;
}

.sotf-shell-drawer-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--vs-line);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple);
  cursor: pointer;
}

.sotf-shell-drawer-nav {
  display: grid;
  align-content: start;
  gap: 16px;
  overflow-y: auto;
  padding-right: 2px;
}

.sotf-shell-drawer-section {
  display: grid;
  gap: 7px;
}

.sotf-shell-drawer-section h3 {
  margin: 0;
  color: #70666e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.sotf-shell-drawer-card {
  display: grid;
  overflow: hidden;
  border: 1px solid #d8cfd5;
  border-radius: 10px;
  background: #fff;
}

.sotf-shell-drawer-link {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 8px 12px;
  border: 0;
  border-bottom: 1px solid #ded5db;
  border-radius: 0;
  background: transparent;
  color: var(--vs-purple-dark);
  text-decoration: none;
  text-align: left;
}

.sotf-shell-drawer-card .sotf-shell-drawer-link:last-child {
  border-bottom: 0;
}

.sotf-shell-drawer-link i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--vs-purple);
  font-size: 0.98rem;
}

.sotf-shell-drawer-link-teal i {
  color: var(--vs-teal-dark);
}

.sotf-shell-drawer-link-red i {
  color: var(--vs-red);
}

.sotf-shell-drawer-link span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.sotf-shell-drawer-link strong {
  color: #2f2730;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.05;
}

.sotf-shell-drawer-link small {
  color: #6f646c;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.15;
}

.sotf-shell-drawer-link:hover,
.sotf-shell-drawer-link:focus,
.sotf-shell-drawer-link.is-active {
  background: #fbf8fa;
  text-decoration: none;
}

.sotf-shell-drawer-link.is-active {
  box-shadow: inset 3px 0 0 var(--vs-teal);
}

.sotf-shell-drawer-link.is-active strong {
  color: var(--vs-purple-dark);
}

.sotf-shell-drawer-logout {
  font-family: var(--vs-font-base);
  cursor: pointer;
}

.sotf-shell-drawer-logout:hover,
.sotf-shell-drawer-logout:focus {
  background: #fff8f8;
}

/* Search Members View */

.ViDsocial-search-view {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
  color: var(--vs-ink);
}

.ViDsocial-search-view .vsv-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.ViDsocial-search-view .vsv-sidebar,
.ViDsocial-search-view .vsv-content {
  min-width: 0;
}

.ViDsocial-search-view .vidsocial-leftMenu,
.ViDsocial-search-view .vsv-search-panel,
.ViDsocial-search-view .vsv-member-card,
.ViDsocial-search-view .vsv-pagination {
  border: 1px solid rgba(85, 36, 72, 0.14);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  box-shadow: 0 12px 30px rgba(47, 39, 48, 0.08);
}

.ViDsocial-search-view .vidsocial-leftMenu {
  overflow: hidden;
  padding: 14px;
}

.ViDsocial-search-view .vsv-left-avatar-wrap {
  display: flex;
  justify-content: center;
  width: 100% !important;
  height: auto !important;
  margin: 10px 0 18px;
  overflow: visible;
}

.ViDsocial-search-view .vidsocial-leftMenu .vsv-left-avatar-wrap a,
.ViDsocial-search-view .vsv-left-avatar-wrap a {
  display: block !important;
  width: 104px !important;
  height: 104px !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.ViDsocial-search-view .vsv-left-avatar,
.ViDsocial-search-view .Header_ProfileImgCrop img {
  display: block;
  width: 104px !important;
  height: 104px !important;
  border: 3px solid #fff;
  border-radius: var(--vs-radius-sm);
  object-fit: cover;
  object-position: top;
  box-shadow: 0 8px 20px rgba(47, 39, 48, 0.16);
}

.ViDsocial-search-view .vidsocial-leftMenu ul {
  display: grid;
  gap: 6px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.ViDsocial-search-view .vidsocial-leftMenu a {
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--vs-purple);
  font-weight: 850;
  text-decoration: none;
}

.ViDsocial-search-view .vidsocial-leftMenu a:hover,
.ViDsocial-search-view .vidsocial-leftMenu a:focus {
  background: var(--vs-teal);
  color: #fff;
  text-decoration: none;
}

.ViDsocial-search-view .vsv-search-panel {
  overflow: hidden;
}

.ViDsocial-search-view .vsv-member-search-form {
  display: grid;
  gap: 0;
}

.ViDsocial-search-view .vsv-search-header,
.ViDsocial-search-view .vsv-search-primary {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 14px;
  padding: 18px 22px;
}

.ViDsocial-search-view .vsv-search-header {
  justify-content: space-between;
  border-bottom: 1px solid rgba(85, 36, 72, 0.14);
  background: #fff;
}

.ViDsocial-search-view .vsv-search-header h3 {
  margin: 0;
  color: var(--vs-purple);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.ViDsocial-search-view .vsv-search-primary {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) auto 42px;
  align-items: end;
  gap: 14px;
  background: var(--vs-purple-soft);
}

.ViDsocial-search-view .vsv-search-primary .ViDsocial-field {
  width: 100%;
  margin-bottom: 0;
}

.ViDsocial-search-view .ViDsocial-field {
  gap: 7px;
  margin-bottom: 0;
}

.ViDsocial-search-view .ViDsocial-label {
  color: var(--vs-purple-dark);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
}

.ViDsocial-search-view .ViDsocial-input,
.ViDsocial-search-view .ViDsocial-select {
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid rgba(116, 51, 97, 0.24);
  border-radius: 12px;
  background: #fff;
  color: var(--vs-ink);
  box-shadow: 0 1px 0 rgba(85, 36, 72, 0.04);
  margin: 0;
}

.ViDsocial-search-view .ViDsocial-input:focus,
.ViDsocial-search-view .ViDsocial-select:focus {
  border-color: var(--vs-teal);
  outline: 3px solid rgba(0, 175, 174, 0.16);
}

.ViDsocial-search-view .vsv-search-primary .vsv-name-field {
  width: 100%;
}

.ViDsocial-search-view .vsv-search-primary .search-btn {
  align-self: end;
  gap: 3px;
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
  margin-bottom: 5px;
}

.ViDsocial-search-view button.ViDsocial-btn.secondary.ViDsocial-SearchHeader {
    margin-bottom: 5px;
}

.ViDsocial-search-view .ViDsocial-SearchHeader {
  flex: 0 0 42px;
  width: 42px;
  min-height: 42px;
  gap: 0;
  padding: 0;
  border-color: var(--vs-line);
}

.ViDsocial-search-view .ViDsocial-SearchHeader i {
  margin: 0;
}

.ViDsocial-search-view .ViDsocial-SearchHeader .vsv-filter-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.ViDsocial-search-view .ViDsocial-searchFilters {
  display: none;
  padding: 0 22px 22px;
  background: #fff;
}

.ViDsocial-search-view .ViDsocial-searchFilters.is-open {
  display: grid;
  gap: 12px;
}

.ViDsocial-search-view .vsv-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px 14px;
  padding-top: 18px;
}

.ViDsocial-search-view .vsv-filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.ViDsocial-search-view .vsv-filter-actions .restButton {
  width: auto;
  min-height: 40px;
  padding: 0 18px;
  border-radius: 999px;
}

.ViDsocial-search-view .vsv-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 14px 0;
  padding: 12px 14px;
  color: var(--vs-muted);
}

.ViDsocial-search-view .vsv-page-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ViDsocial-search-view .ViDsocial-btn.is-disabled {
  opacity: 0.48;
  pointer-events: none;
}

.ViDsocial-search-view .vsv-results {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr 1fr;
}

.ViDsocial-search-view .vsv-member-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 14px;
}

.ViDsocial-search-view .vsv-member-photo img,
.ViDsocial-search-view img.search-profile-image {
  display: block;
  width: 100px;
  aspect-ratio: 1 / 1;
  border: 3px solid #fff;
  border-radius: var(--vs-radius-sm);
  object-fit: cover;
  object-position: top;
  box-shadow: 0 8px 20px rgba(47, 39, 48, 0.12);
}

.ViDsocial-search-view .name-control-search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ViDsocial-search-view .user-nicename {
  margin: 0;
  color: var(--vs-purple);
  font-size: 1.2rem;
  line-height: 1.2;
}

.ViDsocial-search-view .vsv-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(85, 36, 72, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple);
  text-decoration: none;
}

.ViDsocial-search-view .vsv-icon-link:hover,
.ViDsocial-search-view .vsv-icon-link:focus {
  border-color: var(--vs-teal);
  background: var(--vs-teal);
  color: #fff;
  text-decoration: none;
}

.ViDsocial-search-view .vsv-activity,
.ViDsocial-search-view .user-sisterNumber,
.ViDsocial-search-view .user-email,
.ViDsocial-search-view .user-phoneNumber,
.ViDsocial-search-view .user-address {
  margin-top: 4px;
  color: var(--vs-muted);
  font-size: 0.92rem;
}

.ViDsocial-search-view .activeLight,
.ViDsocial-search-view .inactiveLight {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 6px;
  border-radius: 999px;
  vertical-align: middle;
}

.ViDsocial-search-view .activeLight {
  background: var(--vs-teal);
}

.ViDsocial-search-view .inactiveLight {
  background: var(--vs-muted);
}

.ViDsocial-search-view .trailer-info {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  width: 92px;
  min-height: 92px;
  padding: 8px;
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
  color: var(--vs-purple);
  font-weight: 850;
  text-align: center;
}

.ViDsocial-search-view .trailer-info.is-text-only small {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.ViDsocial-search-view .vsv-trailer-placeholder {
  position: relative;
  display: block;
  width: 72px;
  height: 52px;
}

.ViDsocial-search-view .vsv-trailer-placeholder-body {
  position: absolute;
  left: 5px;
  right: 5px;
  bottom: 10px;
  height: 34px;
  border: 3px solid #fff;
  border-radius: 18px 18px 10px 10px;
  background: linear-gradient(135deg, #eaddea 0%, #f8f2e6 100%);
  box-shadow: 0 8px 18px rgba(47, 39, 48, 0.14);
}

.ViDsocial-search-view .vsv-trailer-placeholder-body::before {
  content: "";
  position: absolute;
  left: -7px;
  bottom: 8px;
  width: 14px;
  height: 12px;
  border-bottom: 3px solid var(--vs-purple);
  border-left: 3px solid var(--vs-purple);
  border-radius: 0 0 0 10px;
}

.ViDsocial-search-view .vsv-trailer-placeholder-window,
.ViDsocial-search-view .vsv-trailer-placeholder-door {
  position: absolute;
  top: 8px;
  display: block;
  background: var(--vs-purple);
}

.ViDsocial-search-view .vsv-trailer-placeholder-window {
  left: 12px;
  width: 14px;
  height: 10px;
  border-radius: 5px;
}

.ViDsocial-search-view .vsv-trailer-placeholder-door {
  right: 12px;
  width: 10px;
  height: 18px;
  border-radius: 6px 6px 2px 2px;
}

.ViDsocial-search-view .vsv-trailer-placeholder-wheel {
  position: absolute;
  bottom: 4px;
  display: block;
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 999px;
  background: var(--vs-purple);
}

.ViDsocial-search-view .vsv-trailer-placeholder-wheel.one {
  left: 22px;
}

.ViDsocial-search-view .vsv-trailer-placeholder-wheel.two {
  right: 22px;
}

.ViDsocial-search-view img.trailer-image {
  display: block;
  width: 72px;
  aspect-ratio: 1 / 1;
  border-radius: var(--vs-radius-sm);
  object-fit: cover;
  object-position: top;
}

@media (max-width: 1240px) {

  
  .ViDsocial-search-view .vsv-results {
    display: grid;
    gap: 12px;
    grid-template-columns: 1fr;
  }
}



@media (max-width: 900px) {
  .ViDsocial-search-view .vsv-layout {
    grid-template-columns: 1fr;
  }

  .ViDsocial-search-view .vsv-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  

}

@media (max-width: 640px) {
  .ViDsocial-search-view .vsv-search-header,
  .ViDsocial-search-view .vsv-search-primary,
  .ViDsocial-search-view .vsv-pagination {
    align-items: stretch;
  }

  .ViDsocial-search-view .vsv-search-primary {
    grid-template-columns: 1fr;
  }

  .ViDsocial-search-view .vsv-filter-grid {
    grid-template-columns: 1fr;
  }

  .ViDsocial-search-view .vsv-member-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .ViDsocial-search-view .trailer-info {
    width: 100%;
    justify-items: start;
    grid-template-columns: 72px minmax(0, 1fr);
    text-align: left;
  }
}

/* Forms */

.ViDsocial-field {
  display: grid;
  gap: 6px;
}

.ViDsocial-label {
  color: var(--vs-brown-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.ViDsocial-required {
  color: var(--vs-red);
}

.ViDsocial-help {
  color: var(--vs-muted);
  font-size: 0.86rem;
}

.ViDsocial-input,
.ViDsocial-select,
.ViDsocial-textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  font: inherit;
}

.ViDsocial-textarea {
  min-height: 112px;
  resize: vertical;
}

.ViDsocial-input:focus,
.ViDsocial-select:focus,
.ViDsocial-textarea:focus {
  border-color: var(--vs-red);
  outline: 3px solid rgba(184, 74, 61, 0.18);
}

.ViDsocial-input.is-error,
.ViDsocial-select.is-error,
.ViDsocial-textarea.is-error {
  border-color: var(--vs-red-dark);
  background: var(--vs-red-soft);
}

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

.ViDsocial-check-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 8px 0;
  color: var(--vs-ink);
}

.ViDsocial-check-row input {
  margin-top: 0.22rem;
}

.ViDsocial-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vs-brown-dark);
  font-weight: 850;
  cursor: pointer;
}

.ViDsocial-toggle input {
  position: absolute;
  opacity: 0;
}

.ViDsocial-toggle-slider {
  position: relative;
  width: 48px;
  height: 26px;
  border-radius: 999px;
  background: #d8cbc3;
  transition: background 0.18s ease;
}

.ViDsocial-toggle-slider::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  transition: transform 0.18s ease;
}

.ViDsocial-toggle input:checked + .ViDsocial-toggle-slider {
  background: var(--vs-red);
}

.ViDsocial-toggle input:checked + .ViDsocial-toggle-slider::before {
  transform: translateX(22px);
}

/* Buttons */

.ViDsocial-btn,
.notification-action,
.message-action,
.ViDsocial-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--vs-teal);
  color: #fff;
  border-color: var(--vs-red-dark);
  font: inherit;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.ViDsocial-btn:hover,
.ViDsocial-btn:focus,
.notification-action:hover,
.notification-action:focus,
.message-action:hover,
.message-action:focus {
  background: var(--vs-teal-dark);
  color: #fff;
  text-decoration: none;
}

.ViDsocial-btn.secondary,
.notification-action.secondary,
.message-action.secondary {
  border-color: var(--vs-line);
  background: #fff;
  color: var(--vs-brown-dark);
}

.ViDsocial-btn.secondary:hover,
.notification-action.secondary:hover,
.message-action.secondary:hover {
  background: var(--vs-brown-soft);
}

.ViDsocial-btn.danger,
.notification-action.danger,
.message-action.danger {
  background: var(--vs-red);
}

.ViDsocial-btn.success {
  background: var(--vs-green);
}

.ViDsocial-button-row,
.notification-bulk-actions,
.message-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.ViDsocial-icon-btn {
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  border-color: var(--vs-line);
  background: #fff;
  color: var(--vs-brown-dark);
}

.ViDsocial-icon-btn:hover,
.ViDsocial-icon-btn:focus {
  background: var(--vs-brown-soft);
  color: var(--vs-brown-dark);
}

.ViDsocial-icon-btn.danger {
  color: var(--vs-red-dark);
}

.ViDsocial-icon-btn.solid {
  background: var(--vs-red);
  color: #fff;
}

/* Tables and lists */

.ViDsocial-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
}

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

.ViDsocial-table th,
.ViDsocial-table td {
  padding: 12px;
  border-bottom: 1px solid var(--vs-line);
  text-align: left;
  vertical-align: middle;
}

.ViDsocial-table th {
  background: var(--vs-paper);
  color: var(--vs-brown-dark);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ViDsocial-table tr:last-child td {
  border-bottom: 0;
}

.vidsocial-message-row.unread,
.notification-row.unread {
  background: #fff7f5;
  font-weight: 750;
}

.row-actions,
.notification-actions,
.message-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.ViDsocial-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  color: var(--vs-muted);
  font-size: 0.92rem;
}

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

.ViDsocial-list-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-list-title {
  margin: 0 0 3px;
  color: var(--vs-brown-dark);
  font-weight: 850;
}

.ViDsocial-list-meta {
  margin: 0;
  color: var(--vs-muted);
  font-size: 0.88rem;
}

/* Cards */

.ViDsocial-horizontal-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  background: #fff;
}

.ViDsocial-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(184, 74, 61, 0.18), rgba(215, 165, 75, 0.22)),
    var(--vs-brown-soft);
  color: var(--vs-brown-dark);
  font-weight: 900;
  text-align: center;
}

/* Media */

.gallery-grid,
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.gallery-item,
.preview-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.gallery-thumb,
.preview-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  background: var(--vs-brown-soft);
  color: var(--vs-brown-dark);
  font-weight: 900;
}

.gallery-item .removePhoto,
.preview-item .removePreview {
  position: absolute;
  top: 8px;
  right: 8px;
}

.upload-dropzone {
  position: relative;
  display: grid;
  place-items: center;
  gap: 8px;
  min-height: 180px;
  padding: 24px;
  border: 2px dashed var(--vs-line);
  border-radius: var(--vs-radius);
  background: var(--vs-paper);
  color: var(--vs-muted);
  text-align: center;
}

.upload-dropzone strong {
  color: var(--vs-brown-dark);
}

.upload-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

/* Status */

.ViDsocial-alert,
.ViDsocial-empty,
.ViDsocial-loading,
.ViDsocial-error,
.ViDsocial-success {
  padding: 14px 16px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper);
}

.ViDsocial-empty {
  color: var(--vs-muted);
  text-align: center;
}

.ViDsocial-loading {
  background: #e8f0f7;
  color: var(--vs-blue);
}

.ViDsocial-error {
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
}

.ViDsocial-success {
  background: #e5f1ea;
  color: var(--vs-green);
}

.ViDsocial-alert.warning {
  background: #fff1d6;
  color: #94621e;
  margin-top: 20px;
}

.ViDsocial-alert.info {
  background: #e8f0f7;
  color: var(--vs-blue);
}

/* Modal */

.ViDsocial-modal-demo {
  display: grid;
  place-items: center;
  min-height: 300px;
  padding: 24px;
  border-radius: var(--vs-radius);
  background: linear-gradient(135deg, rgba(63, 43, 35, 0.75), rgba(0, 0, 0, 0.82));
}

.ViDsocial-modalDialog {
  overflow: hidden;
  width: min(100%, 520px);
  border-radius: var(--vs-radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.ViDsocial-modalHeader,
.ViDsocial-modalFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--vs-line);
  background: var(--vs-paper);
}

.ViDsocial-modalFooter {
  justify-content: flex-end;
  border-top: 1px solid var(--vs-line);
  border-bottom: 0;
}

.ViDsocial-modalHeader h3 {
  margin: 0;
  color: var(--vs-brown-dark);
  font-family: var(--vs-font-display);
}

.ViDsocial-modalBody {
  padding: 18px 16px;
  color: var(--vs-muted);
}

/* Feature blocks */

.timeline-post,
.comment-card {
  padding: 16px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  background: #fff;
}

.timeline-author,
.comment-author {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.timeline-media {
  display: grid;
  place-items: center;
  min-height: 180px;
  margin-top: 12px;
  border-radius: var(--vs-radius-sm);
  background: var(--vs-brown-soft);
  color: var(--vs-brown-dark);
  font-weight: 900;
}

.timeline-actions,
.comment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--vs-line);
}

.flag-action {
  margin-left: auto;
}

/* SOTF timeline feed and composer */

.sotf-ui {
  color: var(--vs-ink);
  font-family: var(--vs-font-body);
}

.sotf-container {
  width: 100%;
  margin-inline: auto;
}

.sotf-timeline-page {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
}

.ViDsocial-timeline-section {
  width: 100%;
}

.sotf-profile-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 18px 18px;
  border-radius: var(--vs-radius);
}

.sotf-profile-cover {
  position: absolute;
  inset: 0 0 auto;
  height: 190px;
  overflow: hidden;
}

.sotf-profile-cover-crop {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: var(--vs-radius);
  background: var(--vs-purple-soft);
}

.Header_CoverIMG_float {
  position: absolute;
}

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

.sotf-profile-summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(100%, 1000px);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--vs-radius);
  background: rgba(85, 36, 72, 0.9);
  color: #fff;
  box-shadow: 0 14px 34px rgba(65, 44, 37, 0.2);
}

.sotf-profile-photo,
.sotf-profile-trailer-photo {
  width: 118px;
}

.pic-sqr {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 3px solid #fff;
  border-radius: var(--vs-radius-sm);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.28);
  object-fit: cover;
  object-position: top;
}

.sotf-profile-copy {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 18px;
  align-items: center;
}

.sotf-profile-name {
  margin: 0 0 8px;
  color: #fff;
  font-family: var(--vs-font-display);
  font-size: 2.6rem;
  line-height: 1;
  overflow-wrap: anywhere;
}

.sotf-profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--vs-paper);
  font-weight: 800;
}

.sotf-profile-activity {
  margin-top: 8px;
}

.activeLight,
.inactiveLight {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border-radius: 999px;
  vertical-align: middle;
}

.activeLight {
  background: var(--vs-teal);
}

.inactiveLight {
  background: var(--vs-gold);
}

.sotf-profile-trailer-info {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--vs-radius-sm);
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
}

.sotf-profile-trailer-info .member-directory-profile-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px;
}

.sotf-profile-trailer-info dt {
  margin: 0;
  color: var(--vs-paper);
  font-weight: 900;
}

.sotf-profile-trailer-info dd {
  margin: 0;
  color: #fff;
}

.sotf-panel,
.sotf-post-card,
.sotf-comment-form {
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  box-shadow: 0 14px 34px rgba(65, 44, 37, 0.12);
}

.sotf-panel {
  overflow: hidden;
}

.sotf-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--vs-line);
  background: var(--vs-paper);
}

.sotf-panel-title {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.sotf-panel-header p,
.sotf-post-meta,
.sotf-comment-meta,
.sotf-comment-text,
.sotf-post-stats {
  color: var(--vs-muted);
}

.sotf-panel-header p {
  margin: 4px 0 0;
}

.sotf-status-composer-panel .sotf-panel-header {
  border-bottom-color: rgba(255, 255, 255, 0.18);
  background: var(--vs-purple);
  color: #fff;
}

.sotf-status-composer-panel .sotf-panel-title {
  color: #fff;
}

.sotf-status-composer-panel .sotf-panel-header p {
  color: var(--vs-paper);
}

.sotf-panel-body {
  padding: 18px;
}

.ViDsocial-event-waiver-view .event-waiver-shell {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
}

.ViDsocial-event-waiver-view .event-waiver-header {
  align-items: center;
}

.ViDsocial-event-waiver-view .event-waiver-summary {
  display: grid;
  gap: 8px;
  width: min(100%, 260px);
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--vs-radius-sm);
  background: rgba(116, 51, 97, 0.08);
}

.ViDsocial-event-waiver-view .event-waiver-summary div {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
}

.ViDsocial-event-waiver-view .event-waiver-summary dt {
  color: var(--vs-purple-dark);
  font-weight: 900;
}

.ViDsocial-event-waiver-view .event-waiver-summary dd {
  margin: 0;
  color: var(--vs-ink);
}

.ViDsocial-event-waiver-view .event-waiver-content {
  max-height: 62vh;
  overflow: auto;
  padding: 18px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-event-waiver-view .event-waiver-content > :first-child {
  margin-top: 0;
}

.ViDsocial-event-waiver-view .event-waiver-content > :last-child {
  margin-bottom: 0;
}

.ViDsocial-event-waiver-view .event-waiver-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 16px;
}

.ViDsocial-event-waiver-view .event-waiver-message {
  flex: 1 1 260px;
  margin: 0;
}

.ViDsocial-event-waiver-view .acceptWaver:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.ViDsocial-member-waiver-view .member-waiver-actions {
  align-items: center;
}

.ViDsocial-member-waiver-view .member-waiver-acceptance {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
  color: var(--vs-ink);
  font-weight: 800;
}

.ViDsocial-member-waiver-view .member-waiver-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--vs-teal);
}

.ViDsocial-member-waiver-view .waverAccept_btn:disabled {
  opacity: 0.58;
  cursor: not-allowed;
}

.ViDsocial-event-waiver-view .event-waiver-list {
  display: grid;
  gap: 12px;
}

.ViDsocial-event-waiver-view .event-waiver-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-event-waiver-view .event-waiver-list-item h2 {
  margin: 0 0 8px;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-body);
  font-size: 1.05rem;
}

.ViDsocial-event-waiver-view .event-waiver-list-item dl {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin: 0;
}

.ViDsocial-event-waiver-view .event-waiver-list-item dl div {
  display: flex;
  gap: 6px;
}

.ViDsocial-event-waiver-view .event-waiver-list-item dt {
  color: var(--vs-purple-dark);
  font-weight: 900;
}

.ViDsocial-event-waiver-view .event-waiver-list-item dd {
  margin: 0;
  color: var(--vs-muted);
}

@media (max-width: 640px) {
  .ViDsocial-member-waiver-view .member-waiver-acceptance {
    width: 100%;
    margin-right: 0;
  }

  .ViDsocial-member-waiver-view .waverAccept_btn {
    width: 100%;
  }

  .ViDsocial-event-waiver-view .event-waiver-list-item {
    align-items: stretch;
    flex-direction: column;
  }
}

.ViDsocial-event-detail-view .ved-shell {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
}

.ViDsocial-event-detail-view .ved-hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
  gap: 0;
  overflow: hidden;
}

.ViDsocial-event-detail-view .ved-hero-media {
  position: relative;
  min-height: 320px;
  background: var(--vs-paper);
}

.ViDsocial-event-detail-view .ved-slider,
.ViDsocial-event-detail-view .ved-slider .slick-list,
.ViDsocial-event-detail-view .ved-slider .slick-track,
.ViDsocial-event-detail-view .ved-slider .slick-slide,
.ViDsocial-event-detail-view .ved-slider .slick-slide > div {
  height: 100%;
}

.ViDsocial-event-detail-view .ved-slider {
  position: relative;
}

.ViDsocial-event-detail-view .ved-slider:not(.slick-initialized) {
  overflow: hidden;
}

.ViDsocial-event-detail-view .ved-slider:not(.slick-initialized) > div {
  display: none !important;
  height: 100%;
}

.ViDsocial-event-detail-view .ved-slider:not(.slick-initialized) > div:first-child,
.ViDsocial-event-detail-view .ved-slider:not(.slick-initialized) > div:target {
  display: block !important;
}

.ViDsocial-event-detail-view .ved-slider:not(.slick-initialized):has(> div:target) > div:first-child {
  display: none !important;
}

.ViDsocial-event-detail-view .mainImg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ViDsocial-event-detail-view .ved-slider .slick-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    place-items: center;
    width: 44px;
    height: 44px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(85, 36, 72, 0.9);
    color: transparent;
    box-shadow: 0 10px 22px rgba(47, 39, 48, 0.22);
    cursor: pointer;
    transform: translateY(-50%);
}

.ViDsocial-event-detail-view .ved-slider .slick-arrow:hover,
.ViDsocial-event-detail-view .ved-slider .slick-arrow:focus {
  background: var(--vs-teal);
  outline: none;
}

.ViDsocial-event-detail-view .ved-slider .slick-arrow::before {
    color: #fff;
    font-family: FontAwesome;
    font-size: 1.15rem;
    line-height: 1;
    opacity: 1;
    width: 100%;
    display: inline-block;
    text-align: center;
    margin-top: 11px;
}

.ViDsocial-event-detail-view .ved-slider .slick-prev {
  left: 14px;
}

.ViDsocial-event-detail-view .ved-slider .slick-next {
  right: 14px;
}

.ViDsocial-event-detail-view .ved-slider .slick-prev::before {
  content: "\f104";
}

.ViDsocial-event-detail-view .ved-slider .slick-next::before {
  content: "\f105";
}

h3.soft-event-booking-title {
    margin-bottom: 12px;
}

.ViDsocial-event-detail-view .ved-native-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(85, 36, 72, 0.9);
  color: transparent;
  box-shadow: 0 10px 22px rgba(47, 39, 48, 0.22);
  cursor: pointer;
  transform: translateY(-50%);
}

.ViDsocial-event-detail-view .ved-native-arrow:hover,
.ViDsocial-event-detail-view .ved-native-arrow:focus {
  background: var(--vs-teal);
  outline: none;
}

.ViDsocial-event-detail-view .ved-native-arrow::before {
  color: #fff;
  font-family: FontAwesome;
  font-size: 1.15rem;
  line-height: 1;
}

.ViDsocial-event-detail-view .ved-native-prev {
  left: 14px;
}

.ViDsocial-event-detail-view .ved-native-next {
  right: 14px;
}

.ViDsocial-event-detail-view .ved-native-prev::before {
  content: "\f104";
}

.ViDsocial-event-detail-view .ved-native-next::before {
  content: "\f105";
}

.ViDsocial-event-detail-view .ved-hero-media:has(.ved-slider.slick-initialized) > .ved-native-arrow {
  display: none;
}

.ViDsocial-event-detail-view .ved-image-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 320px;
  color: var(--vs-purple-dark);
}

.ViDsocial-event-detail-view .ved-image-placeholder .fa {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: var(--vs-teal);
  color: #fff;
  font-size: 1.35rem;
}

.ViDsocial-event-detail-view .ved-hero-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  padding: 22px;
}

.ViDsocial-event-detail-view .ved-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.ViDsocial-event-detail-view .ved-title-row h1 {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.98;
}

.ViDsocial-event-detail-view .ved-flag {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--vs-line);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-red-dark);
  cursor: pointer;
}

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

.ViDsocial-event-detail-view .ved-meta-grid div,
.ViDsocial-event-detail-view .ved-ticket-count {
  padding: 12px 14px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-event-detail-view .ved-meta-grid dt {
  color: var(--vs-purple-dark);
  font-weight: 900;
}

.ViDsocial-event-detail-view .ved-meta-grid dd {
  display: grid;
  gap: 2px;
  margin: 3px 0 0;
  color: var(--vs-ink);
}

.ViDsocial-event-detail-view .ved-history {
  margin: 0;
}

.ViDsocial-event-detail-view .ved-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 18px;
  align-items: start;
}

.ViDsocial-event-detail-view .ved-main {
  display: grid;
  gap: 18px;
}

.ViDsocial-event-detail-view .ved-info-grid,
.ViDsocial-event-detail-view .ved-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ViDsocial-event-detail-view .ved-info-grid h3,
.ViDsocial-event-detail-view .paymentSection h4 {
  margin: 0 0 8px;
  color: var(--vs-purple-dark);
}

.ViDsocial-event-detail-view .ved-info-grid p,
.ViDsocial-event-detail-view .ved-description {
  color: var(--vs-ink);
}

.ViDsocial-event-detail-view .ved-ticket-count {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--vs-purple-dark);
  font-weight: 850;
}

.ViDsocial-event-detail-view .ved-description > :first-child {
  margin-top: 0;
}

.ViDsocial-event-detail-view .ved-description > :last-child {
  margin-bottom: 0;
}

.ViDsocial-event-detail-view .ved-booking-body {
  display: grid;
  gap: 16px;
}

.ViDsocial-event-detail-view .event-buy-step-container {
  padding: 18px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-event-detail-view .step-title {
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--vs-teal);
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-body);
  font-size: 1rem;
}

.ViDsocial-event-detail-view .em-tickets {
  width: 100%;
  border-collapse: collapse;
}

.ViDsocial-event-detail-view .em-tickets th,
.ViDsocial-event-detail-view .em-tickets td {
  padding: 12px;
  border-bottom: 1px solid var(--vs-line);
  text-align: left;
  vertical-align: top;
}

.ViDsocial-event-detail-view .em-tickets th {
  color: var(--vs-purple-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ViDsocial-event-detail-view .em-tickets small {
  display: block;
  margin-top: 4px;
  color: var(--vs-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.ViDsocial-event-detail-view .price-center,
.ViDsocial-event-detail-view .em-bookings-ticket-table-price,
.ViDsocial-event-detail-view .em-bookings-ticket-table-spaces {
  text-align: center;
}

.ViDsocial-event-detail-view .costCalTickets,
.ViDsocial-event-detail-view #totalCost {
  width: 96px;
  margin: 0 auto;
  border: 1px solid var(--vs-line);
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
}

.ViDsocial-event-detail-view .eventTicket-total td {
  border-bottom: 0;
  background: rgba(8, 170, 167, 0.08);
  color: var(--vs-purple-dark);
  font-weight: 900;
}

.ViDsocial-event-detail-view .guestContainer {
  display: grid;
  gap: 10px;
  grid-column: 1 / -1;
  padding: 14px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-event-detail-view .visSwitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--vs-line);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(85, 36, 72, 0.05);
}

.ViDsocial-event-detail-view .switchLabel {
  grid-column: 1 / -1;
  padding: 0 14px 6px;
  background: transparent;
  color: var(--vs-purple-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-align: center;
}

.ViDsocial-event-detail-view .visSwitch_ON,
.ViDsocial-event-detail-view .visSwitch_OFF {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--vs-purple-dark);
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}

.ViDsocial-event-detail-view .visSwitch_ON.activeTab,
.ViDsocial-event-detail-view .visSwitch_OFF.activeTab {
  background: var(--vs-teal);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--vs-teal-dark);
}

.ViDsocial-event-detail-view #card-element {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-event-detail-view .stripe-error {
  display: none;
  margin: 0 0 12px;
  color: var(--vs-red-dark);
  font-weight: 800;
}

.ViDsocial-event-detail-view .commentArea .sotf-panel-body {
  display: grid;
  gap: 16px;
}

.ViDsocial-event-detail-view .commentArea .vidsocial-creatPost {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-event-detail-view .commentArea .vidsocial-creatPost h5 {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--vs-line);
  background: transparent;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.ViDsocial-event-detail-view .commentArea .postBoxMid,
.ViDsocial-event-detail-view .commentArea .postBoxEnd {
  display: flex;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.ViDsocial-event-detail-view .commentArea .postBoxMid {
  display: grid;
  gap: 10px;
}

.ViDsocial-event-detail-view .commentArea .postBoxMid > [class*="col-"],
.ViDsocial-event-detail-view .commentArea .postBoxEnd > [class*="col-"] {
  width: 100%;
  max-width: none;
  padding: 0;
  flex: 1 1 auto;
}

.ViDsocial-event-detail-view .commentArea textarea[class*="vidsocial-postMessage"] {
  width: 100%;
  min-height: 116px;
  padding: 12px 14px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  font-family: var(--vs-font-body);
  font-size: 0.95rem;
  line-height: 1.5;
  resize: vertical;
}

.ViDsocial-event-detail-view .commentArea textarea[class*="vidsocial-postMessage"]:focus {
  border-color: var(--vs-teal);
  box-shadow: 0 0 0 3px rgba(8, 170, 167, 0.14);
  outline: none;
}

.ViDsocial-event-detail-view .commentArea .postBoxEnd {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.ViDsocial-event-detail-view .commentArea .submitPost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--vs-red-dark);
  border-radius: 999px;
  background: var(--vs-teal);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ViDsocial-event-detail-view .commentArea .ViDsocial-Timeline {
  display: grid;
  gap: 14px;
}

.ViDsocial-event-detail-view .commentArea .timeline-post {
  margin: 0;
  padding: 14px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-card {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-avatar {
  display: block;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-avatar img {
  display: block;
  width: 64px;
  height: 64px;
  border: 3px solid #fff;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(47, 39, 48, 0.14);
  object-fit: cover;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-main,
.ViDsocial-event-detail-view .commentArea .vec-comment-copy {
  display: grid;
  gap: 7px;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-header a {
  color: var(--vs-teal);
  font-weight: 900;
  text-decoration: none;
}

.ViDsocial-event-detail-view .commentArea .postTimeSince,
.ViDsocial-event-detail-view .commentArea .time-since {
  color: var(--vs-muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-message {
  color: var(--vs-ink);
  font-size: 0.95rem;
  line-height: 1.45;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-images {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ViDsocial-event-detail-view .commentArea .timelineImg {
  width: min(100%, 220px);
  height: auto;
  border-radius: 8px;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-controls button,
.ViDsocial-event-detail-view .commentArea .vec-comment-controls span {
  border: 0;
  background: transparent;
  color: var(--vs-muted);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-controls button {
  cursor: pointer;
}

.ViDsocial-event-detail-view .commentArea .vec-comment-controls button:hover,
.ViDsocial-event-detail-view .commentArea .vec-comment-controls button:focus,
.ViDsocial-event-detail-view .commentArea .vec-comment-controls span:hover,
.ViDsocial-event-detail-view .commentArea .vec-comment-controls span:focus {
  color: var(--vs-purple);
}

.ViDsocial-event-detail-view .commentArea .vec-comment-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-left: auto;
  border: 1px solid var(--vs-line);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-red-dark);
  cursor: pointer;
}

.ViDsocial-event-detail-view .commentArea .vec-reply-composer {
  display: none;
  margin-top: 8px;
}

.ViDsocial-event-detail-view .commentArea .vec-reply-composer .vidsocial-creatPost {
  background: var(--vs-cream);
}

.ViDsocial-event-detail-view .commentArea .vec-replies {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.ViDsocial-event-detail-view .commentArea .vec-reply-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 28px;
  gap: 10px;
  align-items: start;
  padding: 10px;
  border: 1px solid rgba(85, 36, 72, 0.12);
  border-radius: 10px;
  background: rgba(237, 221, 237, 0.5);
}

.ViDsocial-event-detail-view .commentArea .vec-reply-card .vec-comment-avatar img {
  width: 42px;
  height: 42px;
  border-width: 2px;
}

@media (max-width: 640px) {
  .ViDsocial-event-detail-view .commentArea .vec-comment-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding: 12px;
  }

  .ViDsocial-event-detail-view .commentArea .vec-comment-avatar img {
    width: 48px;
    height: 48px;
  }

  .ViDsocial-event-detail-view .commentArea .vec-reply-card {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .ViDsocial-event-detail-view .commentArea .vec-reply-card .vec-comment-flag {
    grid-column: 2;
    justify-self: end;
  }
}

.ViDsocial-event-detail-view .freeOptions,
.ViDsocial-event-detail-view .paymentSection {
  display: grid;
  gap: 12px;
}

.ViDsocial-event-detail-view .ved-confirm-field {
  max-width: 360px;
  margin: 16px auto 0;
}

.ViDsocial-event-detail-view .paymentMethod {
  display: none;
}

.ViDsocial-event-detail-view .ved-sidebar {
  position: sticky;
  top: 18px;
}

.ViDsocial-event-detail-view .bookEvent_bookedList {
  display: grid;
  gap: 10px;
}

.ViDsocial-event-detail-view .ea-row {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.ViDsocial-event-detail-view .ea-image-container {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: var(--vs-radius-sm);
  background: var(--vs-purple-soft);
}

.ViDsocial-event-detail-view .ea-image {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.ViDsocial-event-detail-view .loadMoreAttend {
  width: 100%;
  margin-top: 14px;
}

.ViDsocial-event-detail-view .ViDsocial-btn.postAddPhoto,
.ViDsocial-event-detail-view .ViDsocial-btn.postTagFriend {
  display: none;
}

@media (max-width: 900px) {
  .ViDsocial-event-detail-view .ved-hero,
  .ViDsocial-event-detail-view .ved-layout {
    grid-template-columns: 1fr;
  }

  .ViDsocial-event-detail-view .ved-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .ViDsocial-event-detail-view .ved-hero-media,
  .ViDsocial-event-detail-view .ved-image-placeholder {
    min-height: 240px;
  }

  .ViDsocial-event-detail-view .ved-hero-copy,
  .ViDsocial-event-detail-view .event-buy-step-container {
    padding: 14px;
  }

  .ViDsocial-event-detail-view .ved-meta-grid,
  .ViDsocial-event-detail-view .ved-info-grid,
  .ViDsocial-event-detail-view .ved-form-grid {
    grid-template-columns: 1fr;
  }

  .ViDsocial-event-detail-view .ved-title-row,
  .ViDsocial-event-detail-view .sotf-panel-header {
    align-items: flex-start;
  }

  .ViDsocial-event-detail-view .em-tickets th,
  .ViDsocial-event-detail-view .em-tickets td {
    padding: 10px 8px;
  }

  .ViDsocial-event-detail-view .costCalTickets,
  .ViDsocial-event-detail-view #totalCost {
    width: 76px;
  }
}

.ViDsocial-attendance-view .vat-shell {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
}

.ViDsocial-attendance-view .vat-header {
  align-items: center;
}

.ViDsocial-attendance-view .vat-header .sotf-panel-title {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
}

.ViDsocial-attendance-view .vat-meta,
.ViDsocial-attendance-view .vat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ViDsocial-attendance-view .vat-meta {
  margin-top: 10px;
}

.ViDsocial-attendance-view .vat-meta span,
.ViDsocial-attendance-view .vat-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: 999px;
  background: var(--vs-paper-light);
  color: var(--vs-purple-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.ViDsocial-attendance-view .vat-actions {
  justify-content: flex-end;
}

.ViDsocial-attendance-view .vat-collection .sotf-panel-body {
  max-width: 320px;
}

.ViDsocial-attendance-view .vat-table-panel {
  overflow: hidden;
}

.ViDsocial-attendance-view .vat-table-wrap {
  overflow-x: auto;
}

.ViDsocial-attendance-view .vat-table {
  width: 100%;
  border-collapse: collapse;
}

.ViDsocial-attendance-view .vat-table th,
.ViDsocial-attendance-view .vat-table td {
  padding: 12px;
  border-bottom: 1px solid var(--vs-line);
  text-align: left;
  vertical-align: top;
}

.ViDsocial-attendance-view .vat-table th {
  background: var(--vs-purple-soft);
  color: var(--vs-purple-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ViDsocial-attendance-view .vat-table tbody tr:nth-child(even) {
  background: var(--vs-paper-light);
}

.ViDsocial-attendance-view .vat-host-row {
  background: rgba(8, 170, 167, 0.08);
}

.ViDsocial-attendance-view .vat-check-col {
  width: 58px;
  text-align: center;
}

.ViDsocial-attendance-view .vat-attend-button {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--vs-line);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple-dark);
  cursor: pointer;
  font-size: 1.15rem;
}

.ViDsocial-attendance-view .vat-attend-button:hover,
.ViDsocial-attendance-view .vat-attend-button:focus {
  border-color: var(--vs-teal-dark);
  color: var(--vs-teal-dark);
}

.ViDsocial-attendance-view .vat-ticket-list {
  display: grid;
  gap: 4px;
  margin: 0;
  padding-left: 18px;
}

.ViDsocial-attendance-view .vat-muted {
  color: var(--vs-muted);
}

.ViDsocial-attendance-view .vat-empty {
  color: var(--vs-muted);
  text-align: center;
}

.ViDsocial-attendance-view .bookingDetail {
  margin-top: 8px;
  color: var(--vs-muted);
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.ViDsocial-attendance-view .print-only {
  display: none;
}

@media (max-width: 900px) {
  .ViDsocial-attendance-view .vat-header {
    display: grid;
  }

  .ViDsocial-attendance-view .vat-actions {
    justify-content: flex-start;
  }
}

@media print {
  @page {
    margin: 0.45in;
    size: landscape;
  }

  body {
    background: #fff !important;
    color: #000 !important;
    font-size: 11px;
  }

  .ViDsocial-attendance-view .no-print,
  .ViDsocial-attendance-view .vat-actions,
  .eventWaver_btn,
  .vidsocial-searchWidget,
  .ct-header,
  .ct-footer,
  .oxy-header-wrapper,
  .oxy-header,
  .oxy-sticky-header-active,
  .oxygen-header,
  .oxygen-footer,
  .site-header,
  .site-footer,
  #header,
  #footer,
  #wpadminbar,
  header#_header-49-16,
  div#div_block-7-16,
  div#div_block-3-43,
  div#div_block-35-16,
  header,
  footer,
  nav {
    display: none !important;
  }

  .ViDsocial-attendance-view,
  .ViDsocial-attendance-view .vat-shell {
    background: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
  }

  .ViDsocial-attendance-view .sotf-panel {
    border: 0;
    box-shadow: none;
  }

  .ViDsocial-attendance-view .sotf-panel-header,
  .ViDsocial-attendance-view .sotf-panel-body {
    padding: 0;
  }

  .ViDsocial-attendance-view .vat-table-wrap {
    overflow: visible;
  }

  .ViDsocial-attendance-view .vat-table {
    border: 1px solid #777;
    font-size: 10px;
  }

  .ViDsocial-attendance-view .vat-table th,
  .ViDsocial-attendance-view .vat-table td {
    border-color: #999;
    padding: 5px 6px;
  }

  .ViDsocial-attendance-view .vat-table th {
    background: #eee !important;
    color: #000;
  }

  .ViDsocial-attendance-view .vat-table tr {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .ViDsocial-attendance-view .print-only {
    display: block;
    font-size: 10px;
    margin-bottom: 8px;
  }
}

.sotf-timeline-layout,
.sotf-timeline-feed {
  display: grid;
  gap: 16px;
}

.sotf-timeline-layout.is-loading {
  opacity: 0.72;
}

.sotf-status-composer {
  display: grid;
  gap: 14px;
}

.sotf-post-card {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.sotf-post-header,
.sotf-composer-header,
.sotf-comment {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.sotf-comment {
  grid-template-columns: auto 1fr;
  align-items: flex-start;
  padding: 12px 0;
  border-top: 1px solid var(--vs-line);
}

.sotf-avatar {
  width: 52px;
  height: 52px;
  border: 2px solid var(--vs-paper);
  border-radius: 999px;
  background: var(--vs-red-soft);
  object-fit: cover;
}

.sotf-avatar.is-small {
  width: 38px;
  height: 38px;
}

.sotf-post-author {
  margin: 0;
  color: var(--vs-purple-dark);
  font-weight: 900;
  font-family: 'Open Sans';
}

.sotf-post-meta,
.sotf-comment-meta,
.sotf-post-stats {
  font-size: 0.9rem;
}

.sotf-post-body {
  color: var(--vs-ink);
  font-size: 1rem;
}

.sotf-post-content {
  display: grid;
  gap: 12px;
}

.sotf-post-media,
.sotf-comment-media {
  display: grid;
  gap: 10px;
}

.sotf-post-image,
.sotf-comment-image {
  width: 100%;
  max-height: 520px;
  border-radius: var(--vs-radius-sm);
  object-fit: cover;
}

.sotf-comment-image {
  max-height: 260px;
}

.sotf-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sotf-status-pill,
.taggedButton {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--vs-purple-soft);
  color: var(--vs-purple-dark);
  font-size: 0.82rem;
  font-weight: 850;
}

.taggedButton {
  cursor: pointer;
}

.sotf-post-stats,
.sotf-post-actions,
.sotf-button-row,
.sotf-composer-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.sotf-post-stats,
.sotf-post-actions {
  padding-top: 12px;
  border-top: 1px solid var(--vs-line);
}

.sotf-composer-toolbar {
  justify-content: space-between;
}

.sotf-button,
.sotf-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  border: 1px solid var(--vs-purple-dark);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font: inherit;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.sotf-button {
  padding: 10px 16px;
}

.sotf-button:hover,
.sotf-button:focus,
.sotf-icon-button:hover,
.sotf-icon-button:focus {
  background: var(--vs-purple-dark);
  color: #fff;
  text-decoration: none;
}

.sotf-button.is-secondary {
  border-color: var(--vs-line);
  background: var(--vs-paper-light);
  color: var(--vs-purple-dark);
}

.sotf-button.is-secondary:hover,
.sotf-button.is-secondary:focus {
  background: var(--vs-purple-soft);
  color: var(--vs-purple-dark);
}

.sotf-icon-button {
  width: 40px;
  height: 40px;
  padding: 0;
}

.sotf-icon-button.is-teal {
  border-color: var(--vs-teal-dark);
  background: var(--vs-teal);
}

.sotf-delete-post {
  border-color: var(--vs-line);
  background: var(--vs-paper-light);
  color: var(--vs-red-dark);
}

.sotf-delete-post:hover,
.sotf-delete-post:focus {
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
}

.sotf-field {
  display: grid;
  gap: 7px;
}

.sotf-field label,
.sotf-field > span,
.sotf-postTagForm label {
  color: var(--vs-purple-dark);
  font-weight: 850;
}

.sotf-input,
.sotf-textarea {
  width: 100%;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  font: inherit;
}

.sotf-input {
  min-height: 42px;
  padding: 10px 12px;
}

.sotf-textarea {
  resize: vertical;
  padding: 12px;
}

.sotf-input:focus,
.sotf-textarea:focus {
  border-color: var(--vs-purple);
  box-shadow: 0 0 0 3px rgba(116, 51, 97, 0.14);
  outline: 0;
}

.sotf-inline-field {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}

.sotf-upload-panel,
.vidsocial-simple-upload {
  display: grid;
  gap: 12px;
}

.vidsocial-simple-upload-input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.vidsocial-upload-dropzone {
  display: grid;
  place-items: center;
  min-height: 132px;
  border: 2px dashed var(--vs-line);
  border-radius: var(--vs-radius);
  background: var(--vs-paper);
  color: var(--vs-muted);
  text-align: center;
  cursor: pointer;
}

.vidsocial-upload-dropzone.is-dragover {
  border-color: var(--vs-teal);
  background: var(--vs-teal-soft);
}

.vidsocial-upload-actions {
  display: grid;
  gap: 8px;
  justify-items: center;
}

.vidsocial-choose-photo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
}

.vidsocial-upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
}

.vidsocial-upload-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper);
}

.vidsocial-upload-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vidsocial-upload-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(85, 36, 72, 0.9);
  color: #fff;
  cursor: pointer;
}

.vidsocial-upload-status {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 6px 8px;
  background: rgba(43, 37, 39, 0.76);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.vidsocial-upload-tile.uploaded .vidsocial-upload-status {
  display: none;
}

.vidsocial-upload-tile.failed {
  border-color: var(--vs-red-dark);
}

.sotf-contact-results {
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  box-shadow: 0 12px 28px rgba(65, 44, 37, 0.12);
}

.sotf-contact-results .nameContact {
  padding: 9px 12px;
  cursor: pointer;
}

.sotf-contact-results .nameContact:hover,
.sotf-contact-results .nameContact:focus {
  background: var(--vs-purple-soft);
}

.sotf-comment-list {
  display: grid;
  gap: 0;
}

.sotf-comment-form {
  display: grid;
  gap: 12px;
  margin-top: 4px;
  padding: 14px;
  background: var(--vs-paper-light);
}

.sotf-alert,
.sotf-loading {
  padding: 12px 14px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper);
  color: var(--vs-muted);
}

.sotf-alert.is-error {
  border-color: var(--vs-red-dark);
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
}

.sotf-screen-text {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .sotf-container {
    width: min(100% - 20px, 1000px);
  }

  .sotf-profile-hero {
    padding: 72px 10px 10px;
  }

  .sotf-profile-cover {
    height: 150px;
  }

  .sotf-profile-summary {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .sotf-profile-photo {
    width: 104px;
  }

  .sotf-profile-copy {
    grid-template-columns: 1fr;
  }

  .sotf-profile-name {
    font-size: 2.1rem;
  }

  .sotf-profile-meta {
    justify-content: center;
  }

  .sotf-profile-trailer-info {
    width: 100%;
    text-align: left;
  }

  .sotf-profile-trailer-photo {
    display: none;
  }

  .sotf-panel-header,
  .sotf-panel-body,
  .sotf-post-card {
    padding: 14px;
  }

  .sotf-post-header,
  .sotf-composer-header {
    grid-template-columns: auto 1fr;
  }

  .sotf-delete-post,
  .sotf-status-pill {
    grid-column: 2;
    justify-self: start;
  }

  .sotf-composer-toolbar {
    align-items: stretch;
  }

  .sotf-button-row,
  .sotf-composer-toolbar,
  .sotf-button {
    width: 100%;
  }
}

.settings-row {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(0, 0.65fr);
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--vs-line);
}

.settings-row:last-child {
  border-bottom: 0;
}

/* My Calendar */

.ViDsocial-calendar {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
}

.ViDsocial-calendar-section {
  width: 100%;
}

.ViDsocial-calendar-shell {
  display: grid;
  gap: 14px;
}

.ViDsocial-calendar-subNavagation {
  justify-content: center;
  background: var(--vs-purple-soft);
}

.ViDsocial-calendar-subNavagationLink {
  border: 1px solid rgba(85, 36, 72, 0.18);
  background: var(--vs-surface);
  color: var(--vs-purple-dark);
}

.ViDsocial-calendar-subNavagationLink:hover,
.ViDsocial-calendar-subNavagationLink:focus {
  border-color: var(--vs-teal);
  background: var(--vs-teal-soft);
  color: var(--vs-purple-dark);
  text-decoration: none;
}

.ViDsocial-calendar-subNavagationLink.activeTab,
.ViDsocial-calendar-subNavagationLink.is-active {
  border-color: var(--vs-purple);
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-calendar .tab-view {
  width: 100%;
}

.calendar-tab-shell,
.calendar-tab-loading,
.calendar-tab-error {
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius);
  background: var(--vs-paper-light);
  color: var(--vs-purple-dark);
  font-weight: 850;
  text-align: center;
}

.calendar-tab-shell {
  gap: 12px;
  min-height: 132px;
}

.calendar-tab-shell::before {
  content: "";
  display: block;
  width: min(420px, 90%);
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(116, 51, 97, 0.12), rgba(116, 51, 97, 0.24), rgba(116, 51, 97, 0.12));
  animation: sotfCalendarPulse 1.2s ease-in-out infinite;
}

.calendar-tab-retry {
  min-height: 38px;
  margin-left: 8px;
  padding: 8px 14px;
  border: 1px solid var(--vs-purple-dark);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}

@keyframes sotfCalendarPulse {
  0%,
  100% {
    opacity: 0.45;
  }

  50% {
    opacity: 1;
  }
}

.ViDsocial-calendar .calendar-wrapper,
.ViDsocial-calendar #col,
.ViDsocial-calendar .col-wrap {
  width: 100%;
}

.ViDsocial-calendar .calendar-wrapper {
  overflow: hidden;
  border: 1px solid rgba(85, 36, 72, 0.14);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  box-shadow: 0 12px 30px rgba(47, 39, 48, 0.08);
}

.ViDsocial-calendar .calendar-header,
.ViDsocial-calendar .calendar-item {
  display: grid;
  align-items: center;
  column-gap: 16px;
}

.ViDsocial-calendar .calendar-header {
  min-height: 54px;
  padding: 13px 18px;
  background: var(--vs-purple);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ViDsocial-calendar .calendar-body {
  display: grid;
  background: var(--vs-purple-soft);
}

.ViDsocial-calendar .calendar-body:empty::before {
  content: "No events found.";
  display: block;
  padding: 26px 18px;
  background: #fff;
  color: var(--vs-muted);
  font-weight: 850;
  text-align: center;
}

.ViDsocial-calendar .calendar-item {
  position: relative;
  padding: 18px;
  border-top: 1px solid rgba(85, 36, 72, 0.1);
  background: #fff;
  color: var(--vs-ink);
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}

.ViDsocial-calendar .calendar-item:first-child {
  border-top: 0;
}

.ViDsocial-calendar .calendar-item:hover {
  background: var(--vs-paper-light);
  box-shadow: inset 4px 0 0 var(--vs-teal);
}

.ViDsocial-calendar .calendar-wrapper--attending .calendar-header,
.ViDsocial-calendar .calendar-wrapper--attending .calendar-item {
  grid-template-columns: minmax(0, 2fr) minmax(105px, 0.85fr) minmax(90px, 0.75fr) minmax(135px, 1fr);
}

.ViDsocial-calendar .calendar-wrapper--hosting .calendar-header,
.ViDsocial-calendar .calendar-wrapper--hosting .calendar-item {
  grid-template-columns: minmax(58px, 0.45fr) minmax(0, 1.8fr) minmax(105px, 0.8fr) minmax(90px, 0.7fr) minmax(166px, 1.2fr);
}

.ViDsocial-calendar .calendar-wrapper--waitlist .calendar-header,
.ViDsocial-calendar .calendar-wrapper--waitlist .calendar-item {
  grid-template-columns: minmax(0, 2fr) minmax(105px, 0.85fr) minmax(90px, 0.75fr) minmax(116px, 0.85fr);
}

.ViDsocial-calendar .event-name,
.ViDsocial-calendar .event-date,
.ViDsocial-calendar .event-time,
.ViDsocial-calendar .event-confirm,
.ViDsocial-calendar .event-attn,
.ViDsocial-calendar .event-actions {
  overflow-wrap: anywhere;
}

.ViDsocial-calendar .event-name {
  color: var(--vs-purple);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.ViDsocial-calendar .event-name strong {
  font-weight: 900;
}

.ViDsocial-calendar .event-date,
.ViDsocial-calendar .event-time,
.ViDsocial-calendar .event-attn,
.ViDsocial-calendar .event-confirm {
  color: var(--vs-ink);
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.35;
}

.ViDsocial-calendar .event-attn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--vs-teal-soft);
  color: var(--vs-teal-dark);
  font-weight: 900;
}

.ViDsocial-calendar .event-links,
.ViDsocial-calendar .event-status,
.ViDsocial-calendar .status-text {
  display: block;
  margin-top: 5px;
  color: var(--vs-muted);
  font-size: 0.86em;
  font-weight: 800;
  line-height: 1.35;
}

.ViDsocial-calendar .event-status {
  color: var(--vs-purple-dark);
}

.ViDsocial-calendar .event-links a {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: var(--vs-teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.ViDsocial-calendar .event-links a:hover,
.ViDsocial-calendar .event-links a:focus {
  text-decoration: underline;
}

.ViDsocial-calendar .event-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.ViDsocial-calendar .action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 1px solid rgba(85, 36, 72, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple);
  font: inherit;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.ViDsocial-calendar .action-icon:hover,
.ViDsocial-calendar .action-icon:focus {
  border-color: var(--vs-teal);
  background: var(--vs-teal);
  color: #fff;
  outline: 0;
  box-shadow: 0 0 0 4px rgba(8, 170, 167, 0.14);
  text-decoration: none;
}

.ViDsocial-calendar .eventDeleteConfirm:hover,
.ViDsocial-calendar .eventDeleteConfirm:focus {
  border-color: var(--vs-red);
  background: var(--vs-red);
}

.ViDsocial-calendar .calendar-delete-modal[hidden] {
  display: none;
}

.ViDsocial-calendar .calendar-delete-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 20px;
}

.ViDsocial-calendar .calendar-delete-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(27, 15, 24, 0.58);
}

.ViDsocial-calendar .calendar-delete-dialog {
  position: relative;
  z-index: 1;
}

.ViDsocial-calendar .calendar-delete-copy {
  margin: 0 0 10px;
}

.ViDsocial-calendar .calendar-delete-event {
  margin: 0;
  color: var(--vs-purple);
  font-weight: 900;
}

.ViDsocial-calendar .calendar-delete-error {
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(176, 0, 22, 0.28);
  border-radius: var(--vs-radius-sm);
  background: rgba(176, 0, 22, 0.08);
  color: var(--vs-red);
  font-weight: 800;
}

.ViDsocial-calendar .sotf-member-calendar-card {
  display: grid;
  gap: 16px;
}

.ViDsocial-calendar .sotf-member-calendar-count {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(85, 36, 72, 0.16);
  border-radius: 999px;
  background: var(--vs-purple-soft);
  color: var(--vs-purple-dark);
  font-size: 0.88rem;
  font-weight: 900;
}

.ViDsocial-calendar .calendar-empty {
  padding: 28px 18px;
  background: #fff;
  color: var(--vs-muted);
  font-weight: 850;
  text-align: center;
}

.ViDsocial-calendar .calendar-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 14px 18px;
  border-top: 1px solid rgba(85, 36, 72, 0.12);
  background: #fff;
}

.ViDsocial-calendar .calendar-page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 13px;
  border: 1px solid rgba(85, 36, 72, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple);
  font-weight: 900;
  text-decoration: none;
}

.ViDsocial-calendar .calendar-page-link:hover,
.ViDsocial-calendar .calendar-page-link:focus {
  border-color: var(--vs-teal);
  background: var(--vs-teal);
  color: #fff;
  text-decoration: none;
}

.ViDsocial-calendar .calendar-page-link.is-disabled {
  color: rgba(85, 36, 72, 0.42);
  pointer-events: none;
}

.ViDsocial-calendar .calendar-page-status {
  color: var(--vs-muted);
  font-size: 0.88rem;
  font-weight: 850;
}

@media (max-width: 820px) {
  .ViDsocial-calendar .calendar-header,
  .ViDsocial-calendar .calendar-item {
    column-gap: 12px;
    padding-inline: 12px;
  }
}

@media (max-width: 680px) {
  .ViDsocial-calendar-subNavagation {
    gap: 8px;
    margin-top: 0;
  }

  .ViDsocial-calendar-subNavagationLink {
    flex: 1 1 100%;
  }

  .ViDsocial-calendar .calendar-wrapper {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .ViDsocial-calendar .calendar-header {
    display: none;
  }

  .ViDsocial-calendar .calendar-body {
    gap: 12px;
    background: transparent;
  }

  .ViDsocial-calendar .calendar-body:empty::before {
    border: 1px solid rgba(85, 36, 72, 0.14);
    border-radius: var(--vs-radius);
  }

  .ViDsocial-calendar .calendar-item,
  .ViDsocial-calendar .calendar-wrapper--attending .calendar-item,
  .ViDsocial-calendar .calendar-wrapper--hosting .calendar-item,
  .ViDsocial-calendar .calendar-wrapper--waitlist .calendar-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(85, 36, 72, 0.14);
    border-radius: var(--vs-radius);
    box-shadow: 0 8px 22px rgba(47, 39, 48, 0.08);
  }

  .ViDsocial-calendar .event-name,
  .ViDsocial-calendar .event-date,
  .ViDsocial-calendar .event-time,
  .ViDsocial-calendar .event-confirm,
  .ViDsocial-calendar .event-attn,
  .ViDsocial-calendar .event-actions {
    display: grid;
    grid-template-columns: minmax(86px, 0.38fr) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .ViDsocial-calendar .event-name::before,
  .ViDsocial-calendar .event-date::before,
  .ViDsocial-calendar .event-time::before,
  .ViDsocial-calendar .event-confirm::before,
  .ViDsocial-calendar .event-attn::before,
  .ViDsocial-calendar .event-actions::before {
    content: attr(data-label);
    color: var(--vs-muted);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .ViDsocial-calendar .event-attn {
    justify-content: start;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: var(--vs-ink);
  }

  .ViDsocial-calendar .event-actions {
    align-items: center;
  }

  .ViDsocial-calendar .event-actions::before {
    align-self: center;
  }

  .calendar-tab-error {
    text-align: left;
  }

  .calendar-tab-retry {
    display: block;
    width: 100%;
    margin: 10px 0 0;
  }
}

@media (max-width: 520px) {
  .ViDsocial-calendar .event-name,
  .ViDsocial-calendar .event-date,
  .ViDsocial-calendar .event-time,
  .ViDsocial-calendar .event-confirm,
  .ViDsocial-calendar .event-attn,
  .ViDsocial-calendar .event-actions {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ViDsocial-calendar .event-actions {
    gap: 8px;
  }

  .ViDsocial-calendar .event-actions::before {
    width: 100%;
  }
}

/* Add Event View */

.ViDsocial-add-event-view {
  padding: 20px 0 34px;
  color: var(--vs-ink);
}

.ViDsocial-add-event-view .vae-shell {
    display: flex;
    gap: 16px;
    flex-direction: column;
}

.ViDsocial-add-event-view .vae-shell > * {
  grid-column: 1 / -1;
}

.ViDsocial-add-event-view .vae-shell > div:first-child {
  margin-bottom: 2px;
}

.ViDsocial-add-event-view .vidsocial-event-form-notice,
.ViDsocial-add-event-view .vae-topbar,
.ViDsocial-add-event-view .userInfo,
.ViDsocial-add-event-view .location_addressRow,
.ViDsocial-add-event-view .vae-when-section,
.ViDsocial-add-event-view .vae-category-section,
.ViDsocial-add-event-view .time-row,
.ViDsocial-add-event-view .vae-image-section,
.ViDsocial-add-event-view .by3Option_row,
.ViDsocial-add-event-view .eventOptions,
.ViDsocial-add-event-view .submit-row,
.ViDsocial-add-event-view .vae-shell > .row {
  border: 1px solid rgba(85, 36, 72, 0.14);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  box-shadow: 0 12px 30px rgba(47, 39, 48, 0.08);
}

.ViDsocial-add-event-view hr {
  display: none;
}

.ViDsocial-add-event-view h4,
.ViDsocial-add-event-view h5 {
  margin: 6px 0 -4px;
  color: var(--vs-purple);
  font-weight: 900;
  line-height: 1.2;
}

.ViDsocial-add-event-view h4 {
  font-family: var(--vs-font-display);
  font-size: 1.55rem;
}

.ViDsocial-add-event-view h5 {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ViDsocial-add-event-view .vae-shell > h4,
.ViDsocial-add-event-view .vae-shell > h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  margin-top: 4px;
  padding: 0 4px;
}

.ViDsocial-add-event-view .vae-shell > h4::after,
.ViDsocial-add-event-view .vae-shell > h5::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(105, 53, 92, 0.18);
}

.ViDsocial-add-event-view .vae-topbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  gap: 12px;
  align-items: center;
  padding: 16px 18px;
  border-color: rgba(105, 53, 92, 0.24);
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-add-event-view .vae-topbar .col-md-6,
.ViDsocial-add-event-view .vae-topbar .col-md-8,
.ViDsocial-add-event-view .vae-topbar .col-md-2 {
  width: auto;
  max-width: none;
  padding: 0;
}

.ViDsocial-add-event-view .vae-topbar h4 {
  margin: 0;
  color: #fff;
}

.ViDsocial-add-event-view .vae-topbar small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
}

.ViDsocial-add-event-view .userInfo,
.ViDsocial-add-event-view .location_addressRow,
.ViDsocial-add-event-view .vae-when-section,
.ViDsocial-add-event-view .vae-category-section,
.ViDsocial-add-event-view .vae-shell > .row,
.ViDsocial-add-event-view .time-row,
.ViDsocial-add-event-view .vae-image-section,
.ViDsocial-add-event-view .by3Option_row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  align-items: end;
  margin: 0;
  padding: 16px 18px;
}

.ViDsocial-add-event-view .userInfo,
.ViDsocial-add-event-view .location_addressRow,
.ViDsocial-add-event-view .vae-when-section,
.ViDsocial-add-event-view .time-row,
.ViDsocial-add-event-view .vae-image-section,
.ViDsocial-add-event-view .by3Option_row,
.ViDsocial-add-event-view .vae-category-section,
.ViDsocial-add-event-view .vae-shell > .row {
  position: relative;
}

.ViDsocial-add-event-view .userInfo::before,
.ViDsocial-add-event-view .location_addressRow::before,
.ViDsocial-add-event-view .vae-when-section::before,
.ViDsocial-add-event-view .time-row::before,
.ViDsocial-add-event-view .vae-image-section::before,
.ViDsocial-add-event-view .by3Option_row::before,
.ViDsocial-add-event-view .vae-category-section::before,
.ViDsocial-add-event-view .vae-shell > .row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: var(--vs-radius) 0 0 var(--vs-radius);
  background: var(--vs-teal);
}

.ViDsocial-add-event-view .vae-shell > .vae-topbar {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto auto auto !important;
  gap: 12px;
  align-items: center;
  border-color: rgba(105, 53, 92, 0.24);
  background: var(--vs-purple) !important;
  color: #fff !important;
}

.ViDsocial-add-event-view .vae-shell > .vae-topbar::before {
  display: none;
}

.ViDsocial-add-event-view .location_addressRow {
  grid-template-columns: repeat(4, 1fr);
}

.ViDsocial-add-event-view .vae-when-section,
.ViDsocial-add-event-view .vae-image-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.ViDsocial-add-event-view .vae-when-section .row,
.ViDsocial-add-event-view .vae-when-section .time-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ViDsocial-add-event-view .vae-when-section .row::before,
.ViDsocial-add-event-view .vae-when-section .time-row::before {
  display: none;
}

.ViDsocial-add-event-view .vae-when-section .vae-recurring-row {
  grid-template-columns: 150px minmax(0, 1fr) 190px;
}

.ViDsocial-add-event-view .vae-when-section .col-2,
.ViDsocial-add-event-view .vae-when-section .col-3,
.ViDsocial-add-event-view .vae-when-section .col-10 {
  grid-column: auto;
}

.ViDsocial-add-event-view .vae-when-section .vae-time-label {
  color: var(--vs-purple);
  font-weight: 900;
}

.ViDsocial-add-event-view .vae-when-section .vae-all-day-cell {
  display: flex;
  justify-content: flex-end;
  color: inherit;
  font-weight: inherit;
}

.ViDsocial-add-event-view .vae-when-section:has(#vidsocial-eventOnceAllDay:checked) .onceTime {
  display: none;
}

.ViDsocial-add-event-view .vae-image-heading h5 {
  margin: 0;
}

.ViDsocial-add-event-view .vae-category-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
}

.ViDsocial-add-event-view .vae-category-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.14);
}

.ViDsocial-add-event-view .vae-category-header h5 {
  margin: 0;
  color: var(--vs-purple);
  font-family: var(--vs-font-display);
  font-size: 1.35rem;
  text-transform: none;
}

.ViDsocial-add-event-view .vae-category-body,
.ViDsocial-add-event-view .vae-category-groups {
  display: grid;
  gap: 20px;
  width: 100%;
}

.ViDsocial-add-event-view .vae-category-group {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(85, 36, 72, 0.12);
  border-radius: var(--vs-radius-sm);
  background: rgba(255, 249, 239, 0.5);
}

.ViDsocial-add-event-view .vae-category-group h6 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.12);
  color: var(--vs-purple-dark);
  font: 900 0.82rem/1.2 var(--vs-font-ui);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ViDsocial-add-event-view .ec-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
}

.ViDsocial-add-event-view .ec-checkbox-grid[data-columns="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ViDsocial-add-event-view .ec-checkbox-grid[data-columns="4"] {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ViDsocial-add-event-view .ec-checkbox-item {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  margin: 0;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid rgba(85, 36, 72, 0.12);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.25;
}

.ViDsocial-add-event-view .ec-checkbox-item:hover,
.ViDsocial-add-event-view .ec-checkbox-item:focus-within {
  border-color: rgba(0, 175, 174, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 175, 174, 0.1);
}

.ViDsocial-add-event-view .ec-checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--vs-teal);
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader {
  display: grid;
  gap: 14px;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .dropzone {
  position: relative;
  display: grid;
  gap: 6px;
  justify-items: center;
  padding: 24px 18px;
  border: 2px dashed rgba(105, 53, 92, 0.24);
  border-radius: var(--vs-radius);
  background: var(--vs-cream);
  color: var(--vs-purple);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.16s ease, background-color 0.16s ease, transform 0.16s ease;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .dropzone:hover,
.ViDsocial-add-event-view .vidsocial-event-image-uploader .dropzone.drag {
  border-color: var(--vs-teal);
  background: rgba(0, 175, 174, 0.08);
  transform: translateY(-1px);
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .dropzone-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--vs-teal);
  color: #fff;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .dropzone strong {
  font-size: 1rem;
  font-weight: 900;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .dropzone small {
  color: var(--vs-muted);
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader input[type="file"] {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  cursor: pointer;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .pick {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: auto;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--vs-purple);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .upload-status {
  color: var(--vs-muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .upload-status.is-error {
  color: var(--vs-red);
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
  gap: 12px;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(105, 53, 92, 0.14);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  box-shadow: 0 10px 22px rgba(47, 39, 48, 0.08);
  max-width: 350px;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
  padding: 8px;
  background: var(--vs-purple-wash);
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .bar a,
.ViDsocial-add-event-view .vidsocial-event-image-uploader .bar button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(105, 53, 92, 0.16);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-add-event-view .vidsocial-event-image-uploader .bar a:hover,
.ViDsocial-add-event-view .vidsocial-event-image-uploader .bar button:hover {
  border-color: var(--vs-teal);
  color: var(--vs-teal-dark);
}

.ViDsocial-add-event-view .time-row,
.ViDsocial-add-event-view .by3Option_row {
  grid-template-columns: 150px repeat(3, 1fr);
}

.ViDsocial-add-event-view .userInfo #vidsocial-eventName {
  min-height: 50px;
  font-size: 1.08rem;
  font-weight: 850;
}

.ViDsocial-add-event-view .col-1,
.ViDsocial-add-event-view .col-2,
.ViDsocial-add-event-view .col-3,
.ViDsocial-add-event-view .col-10,
.ViDsocial-add-event-view .col-12,
.ViDsocial-add-event-view .col-md-12 {
  width: auto;
  max-width: none;
  padding: 0;
}

.ViDsocial-add-event-view .col-1,
.ViDsocial-add-event-view .col-2,
.ViDsocial-add-event-view .col-3,
.ViDsocial-add-event-view .col-10,
.ViDsocial-add-event-view .col-12,
.ViDsocial-add-event-view .col-md-12 {
  grid-column: span 12;
}

.ViDsocial-add-event-view .location_addressRow .col-3,
.ViDsocial-add-event-view .location_addressRow .col-10 {
  grid-column: span 1;
}

.ViDsocial-add-event-view .location_addressRow .col-12 {
  grid-column: 1 / -1;
}

.ViDsocial-add-event-view .time-row .col-2 {
  grid-column: span 1;
  color: var(--vs-purple);
  font-weight: 900;
}

.ViDsocial-add-event-view .time-row .col-3 {
  grid-column: span 1;
}

.ViDsocial-add-event-view .by3Option_row > div {
  display: grid;
  gap: 6px;
}

.ViDsocial-add-event-view .by3Option_row > div:first-child {
  color: var(--vs-purple);
  font-weight: 900;
}

.ViDsocial-add-event-view input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.ViDsocial-add-event-view select,
.ViDsocial-add-event-view textarea {
  width: 100%;
  min-height: 42px;
  margin: 0;
  border: 1px solid rgba(85, 36, 72, 0.18);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  font: inherit;
}

.ViDsocial-add-event-view input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.ViDsocial-add-event-view select {
  padding: 9px 11px;
}

.ViDsocial-add-event-view textarea {
  padding: 11px;
}

.ViDsocial-add-event-view input:focus,
.ViDsocial-add-event-view select:focus,
.ViDsocial-add-event-view textarea:focus {
  border-color: var(--vs-purple);
  box-shadow: 0 0 0 3px rgba(105, 53, 92, 0.12);
  outline: none;
}

.ViDsocial-add-event-view .submitEvent,
.ViDsocial-add-event-view .saveEvent,
.ViDsocial-add-event-view .ViDsocial-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--vs-purple);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-add-event-view .vae-topbar .submitEvent,
.ViDsocial-add-event-view .vae-topbar .saveEvent,
.ViDsocial-add-event-view .vae-topbar .ViDsocial-submit {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.96);
  color: var(--vs-purple);
}

.ViDsocial-add-event-view .vae-topbar .submitEvent {
  border-color: var(--vs-teal);
  background: var(--vs-teal);
  color: #fff;
}

.ViDsocial-add-event-view .saveEvent,
.ViDsocial-add-event-view .ViDsocial-submit {
  border-color: rgba(85, 36, 72, 0.16);
  background: #fff;
  color: var(--vs-purple);
}

.ViDsocial-add-event-view .submitEvent:hover,
.ViDsocial-add-event-view .submitEvent:focus,
.ViDsocial-add-event-view .saveEvent:hover,
.ViDsocial-add-event-view .saveEvent:focus,
.ViDsocial-add-event-view .ViDsocial-submit:hover,
.ViDsocial-add-event-view .ViDsocial-submit:focus {
  border-color: var(--vs-teal);
  background: var(--vs-teal);
  color: #fff;
  text-decoration: none;
}

.ViDsocial-add-event-view .vidsocial-event-form-notice {
  display: none;
  margin: 0;
  padding: 14px 16px;
  font-weight: 800;
  line-height: 1.4;
}

.ViDsocial-add-event-view .vidsocial-event-form-notice.notice-success {
  border-color: rgba(0, 154, 157, 0.28);
  background: rgba(0, 154, 157, 0.08);
  color: var(--vs-teal-dark);
}

.ViDsocial-add-event-view .vidsocial-event-form-notice.notice-error {
  border-color: rgba(194, 0, 20, 0.22);
  background: rgba(194, 0, 20, 0.08);
  color: var(--vs-red);
}

.ViDsocial-add-event-view .vidsocial-required-alert {
  display: none;
  margin: 0 0 6px;
  padding: 7px 9px;
  border-left: 4px solid var(--vs-red);
  background: rgba(194, 0, 20, 0.08);
  color: var(--vs-red);
  font-size: 0.82rem;
  font-weight: 900;
}

.ViDsocial-add-event-view .vs-field-invalid,
.ViDsocial-add-event-view .vidsocial-required-missing {
  border-color: var(--vs-red) !important;
  background: #fffafa !important;
  box-shadow: 0 0 0 3px rgba(194, 0, 20, 0.12) !important;
}

.ViDsocial-add-event-view .visSwitch {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 38px 38px;
  gap: 2px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 190px;
  min-height: 42px;
  padding: 3px;
  border: 1px solid rgba(85, 36, 72, 0.18);
  border-radius: 999px;
  background: var(--vs-purple-soft);
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.ViDsocial-add-event-view .visSwitch .vae-all-day-input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  margin: 0 !important;
  opacity: 0;
  appearance: none;
  cursor: pointer;
}

.ViDsocial-add-event-view .visSwitch:hover {
  border-color: rgba(0, 175, 174, 0.55);
}

.ViDsocial-add-event-view .switchLabel {
  padding: 0 10px 0 12px;
  color: var(--vs-purple);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.ViDsocial-add-event-view .visSwitch_ON,
.ViDsocial-add-event-view .visSwitch_OFF {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  min-width: 38px;
  padding: 0 8px;
  border-radius: 999px;
  color: var(--vs-purple);
  font-size: 0.78rem;
  font-weight: 900;
}

.ViDsocial-add-event-view .visSwitch .activeTab {
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-add-event-view .vae-all-day-cell:has(#vidsocial-eventOnceAllDay:checked) .visSwitch_ON {
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-add-event-view .vae-all-day-cell:has(#vidsocial-eventOnceAllDay:checked) .visSwitch_OFF {
  background: transparent;
  color: var(--vs-purple);
}

.ViDsocial-add-event-view .vae-all-day-cell:not(:has(#vidsocial-eventOnceAllDay:checked)) .visSwitch_ON {
  background: transparent;
  color: var(--vs-purple);
}

.ViDsocial-add-event-view .vae-all-day-cell:not(:has(#vidsocial-eventOnceAllDay:checked)) .visSwitch_OFF {
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-add-event-view .eventOptions.divTable,
.ViDsocial-add-event-view .eventOptions .divTableHeading,
.ViDsocial-add-event-view .eventOptions .divTableBody {
  display: block;
  width: 100%;
}

.ViDsocial-add-event-view .eventOptions {
  overflow: hidden;
  margin-top: 8px;
}

.ViDsocial-add-event-view .eventOptions .divTableHeading .divTableRow {
  display: grid;
  grid-template-columns: 58px 2fr 2fr 86px 86px 86px 140px;
  align-items: stretch;
  width: 100%;
}

.ViDsocial-add-event-view .eventOptions .divTableHeading .divTableRow::before {
  display: none;
}

.ViDsocial-add-event-view .eventOptions .divTableHeading .divTableRow {
  grid-template-columns: 58px 2fr 2fr 86px 86px 86px 140px !important;
}

.ViDsocial-add-event-view .eventOptions .eventOption {
  display: grid;
  grid-template-columns: 58px 2fr 2fr 86px 86px 86px 140px;
  align-items: stretch;
  width: 100%;
}

.ViDsocial-add-event-view .eventOptions .divTableHead,
.ViDsocial-add-event-view .eventOptions .divTableCell {
  display: flex;
  border: 0;
  padding: 0;
}

.ViDsocial-add-event-view .eventOptions .divTableHead {
  align-items: center;
  min-height: 36px;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.14);
  background: var(--vs-purple-soft);
  color: var(--vs-purple);
  font-weight: 900;
  text-transform: uppercase;
}

.ViDsocial-add-event-view .eventOptions .divTableHead[style*="display: none"] {
  display: none !important;
}

.ViDsocial-add-event-view .eventOptions .divTableHead small {
  font-size: 0.72rem;
  letter-spacing: 0;
}

.ViDsocial-add-event-view .eventOptions .eventOption {
  background: #fff;
  border-top: 1px solid rgba(85, 36, 72, 0.12);
}

.ViDsocial-add-event-view .eventOptions .eventOption:hover {
  background: #fffdf9;
}

.ViDsocial-add-event-view .eventOptions .eventOption:first-child {
  border-top: 0;
}

.ViDsocial-add-event-view .eventOptions .divTableCell {
  align-items: center;
  min-height: 46px;
  border-right: 1px solid rgba(85, 36, 72, 0.12);
}

.ViDsocial-add-event-view .eventOptions .divTableCell:last-child {
  border-right: 0;
}

.ViDsocial-add-event-view .eventOptions .eventOption > [style*="display:none"] {
  display: none !important;
}

.ViDsocial-add-event-view .eventOptions input,
.ViDsocial-add-event-view .eventOptions select {
  height: 46px;
  margin: 0 !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ViDsocial-add-event-view .eventOptions input:focus,
.ViDsocial-add-event-view .eventOptions select:focus {
  box-shadow: inset 0 -2px 0 var(--vs-purple);
}

.ViDsocial-add-event-view .eventOptions .round-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0 2px;
  padding: 0;
  border-radius: 50%;
  background: var(--vs-purple-soft);
  color: var(--vs-purple);
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

.ViDsocial-add-event-view .eventOptions .eventOption-actions {
  align-items: center;
  justify-content: center;
  gap: 2px;
  overflow: hidden;
  background: var(--vs-purple-soft);
}

.ViDsocial-add-event-view .eventOptions .round-btn:hover,
.ViDsocial-add-event-view .eventOptions .round-btn:focus {
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-add-event-view .submit-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 18px;
}

.ViDsocial-add-event-view .submitEvent:disabled,
.ViDsocial-add-event-view .saveEvent:disabled {
  cursor: wait;
  opacity: 0.65;
}

.ViDsocial-add-event-view .vae-version {
  display: block;
  color: var(--vs-muted);
  text-align: right;
}

@media (max-width: 900px) {
  .ViDsocial-add-event-view .vae-topbar,
  .ViDsocial-add-event-view .location_addressRow,
  .ViDsocial-add-event-view .time-row,
  .ViDsocial-add-event-view .by3Option_row {
    grid-template-columns: 1fr;
  }

  .ViDsocial-add-event-view .location_addressRow .col-3,
  .ViDsocial-add-event-view .location_addressRow .col-10,
  .ViDsocial-add-event-view .time-row .col-2,
  .ViDsocial-add-event-view .time-row .col-3 {
    grid-column: 1 / -1;
  }

  .ViDsocial-add-event-view .vae-when-section .row,
  .ViDsocial-add-event-view .vae-when-section .time-row,
  .ViDsocial-add-event-view .vae-when-section .vae-recurring-row {
    grid-template-columns: 1fr;
  }

  .ViDsocial-add-event-view .vae-when-section .vae-all-day-cell {
    justify-content: flex-start;
  }

  .ViDsocial-add-event-view .eventOptions .divTableHeading {
    display: none;
  }

  .ViDsocial-add-event-view .eventOptions {
    overflow: visible;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .ViDsocial-add-event-view .eventOptions .eventOption {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid rgba(85, 36, 72, 0.14);
    border-radius: var(--vs-radius);
    background: var(--vs-surface);
  }

  .ViDsocial-add-event-view .eventOptions .divTableCell {
    display: block;
    border: 0;
  }

  .ViDsocial-add-event-view .eventOptions .eventOption-actions {
    display: flex;
    justify-content: flex-start;
    background: transparent;
  }

  .ViDsocial-add-event-view .eventOptions .divTableCell::before {
    display: block;
    margin-bottom: 4px;
    color: var(--vs-purple);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .ViDsocial-add-event-view .eventOptions .eventOption .divTableCell:nth-child(1)::before {
    content: "Actions";
  }

  .ViDsocial-add-event-view .eventOptions .eventOption .divTableCell:nth-child(2)::before {
    content: "Option title";
  }

  .ViDsocial-add-event-view .eventOptions .eventOption .divTableCell:nth-child(3)::before {
    content: "Description";
  }

  .ViDsocial-add-event-view .eventOptions .eventOption .divTableCell:nth-child(4)::before {
    content: "Cost";
  }

  .ViDsocial-add-event-view .eventOptions .eventOption .divTableCell:nth-child(5)::before {
    content: "Qty";
  }

  .ViDsocial-add-event-view .eventOptions .eventOption .divTableCell:nth-child(6)::before {
    content: "Limit";
  }

  .ViDsocial-add-event-view .eventOptions .eventOption .divTableCell:nth-child(7)::before {
    content: "Type";
  }

  .ViDsocial-add-event-view .eventOptions input,
  .ViDsocial-add-event-view .eventOptions select {
    border: 1px solid rgba(85, 36, 72, 0.18);
    border-radius: var(--vs-radius-sm);
  }
}

/* Event Search View */

.ViDsocial-event-search-view {
  display: block;
  padding: 20px 0 34px;
  color: var(--vs-ink);
}

.ViDsocial-event-search-view .ves-shell {
  display: grid;
  gap: 18px;
}

.ViDsocial-event-search-view .ves-search-panel,
.ViDsocial-event-search-view .ves-results-panel,
.ViDsocial-event-search-view .ves-event-card,
.ViDsocial-event-search-view .ves-pagination {
  border: 1px solid rgba(85, 36, 72, 0.14);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  box-shadow: 0 12px 30px rgba(47, 39, 48, 0.08);
}

.ViDsocial-event-search-view .ves-search-form {
  margin: 0;
}

.ViDsocial-event-search-view .ves-search-panel {
  overflow: hidden;
}

.ViDsocial-event-search-view .ves-search-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto 42px;
  gap: 10px;
  align-items: end;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.14);
  background: var(--vs-purple-soft);
}

.ViDsocial-event-search-view .ves-event-name-field {
  margin: 0;
}

.ViDsocial-event-search-view .ves-search-main .ViDsocial-btn {
  min-height: 42px;
  padding: 0 18px;
  white-space: nowrap;
}

.ViDsocial-event-search-view .ves-search-main .restButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--vs-line);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple-dark);
}

.ViDsocial-event-search-view .ves-search-main .restButton:hover,
.ViDsocial-event-search-view .ves-search-main .restButton:focus {
  border-color: var(--vs-purple);
  background: var(--vs-purple-soft);
  color: var(--vs-purple-dark);
  text-decoration: none;
}

.ViDsocial-event-search-view .ves-filter-toggle {
  width: 42px;
  min-height: 42px;
  gap: 0;
  padding: 0;
  border-color: var(--vs-line);
}

.ViDsocial-event-search-view .ves-filter-toggle i {
  margin: 0;
}

.ViDsocial-event-search-view .ves-filter-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.ViDsocial-event-search-view .ves-filter-grid {
  display: none;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px 14px;
  padding: 18px 22px 22px;
  background: #fff;
}

.ViDsocial-event-search-view .ves-filter-grid.is-open {
  display: grid;
}

.ViDsocial-event-search-view .ViDsocial-field {
  display: grid;
  gap: 7px;
  margin-bottom: 0;
}

.ViDsocial-event-search-view .ViDsocial-field span {
  color: var(--vs-purple-dark);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.15;
}

.ViDsocial-event-search-view .ViDsocial-input,
.ViDsocial-event-search-view .ViDsocial-select,
.ViDsocial-event-search-view #vidsocial-eventCatagory {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(116, 51, 97, 0.24);
  border-radius: 12px;
  background-color: #fff;
  color: var(--vs-ink);
  font-family: var(--vs-font-body);
  font-size: 0.95rem;
  line-height: 1.25;
  box-shadow: 0 1px 0 rgba(85, 36, 72, 0.04);
}

.ViDsocial-event-search-view .ViDsocial-input:focus,
.ViDsocial-event-search-view .ViDsocial-select:focus,
.ViDsocial-event-search-view #vidsocial-eventCatagory:focus {
  border-color: var(--vs-teal);
  box-shadow: 0 0 0 3px rgba(0, 175, 174, 0.16);
  outline: none;
}

.ViDsocial-event-search-view .ves-results-panel {
  overflow: hidden;
}

.ViDsocial-event-search-view .ves-results-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.14);
  background: #fff;
}

.ViDsocial-event-search-view .ves-eyebrow {
  margin: 0 0 3px;
  color: var(--vs-purple);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ViDsocial-event-search-view .ves-results-header h3 {
  margin: 0;
  color: var(--vs-purple);
  font-family: var(--vs-font-display);
  font-size: 1.7rem;
  line-height: 1.1;
}

.ViDsocial-event-search-view .ves-results-list {
  display: grid;
  gap: 14px;
  padding: 18px 22px 22px;
}

.ViDsocial-event-search-view .ves-event-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 18px;
  margin: 0;
  padding: 16px;
}

.ViDsocial-event-search-view .ves-event-card-guest {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 2fr);
}

.ViDsocial-event-search-view .ves-card-media {
  display: grid;
  gap: 10px;
}

.ViDsocial-event-search-view .ves-card-img,
.ViDsocial-event-search-view .listCardImg {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto !important;
  max-width: none !important;
  margin: 0 !important;
  border-radius: var(--vs-radius-sm) !important;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(47, 39, 48, 0.12);
}

.ViDsocial-event-search-view .event_status {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 154, 157, 0.28);
  border-radius: 999px;
  background: rgba(0, 154, 157, 0.08);
  color: var(--vs-teal-dark);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.ViDsocial-event-search-view .event_status-closed {
  border-color: rgba(194, 0, 20, 0.22);
  background: rgba(194, 0, 20, 0.08);
  color: var(--vs-red);
}

.ViDsocial-event-search-view .eventDetailsBtn {
  width: 100%;
  justify-content: center;
}

.ViDsocial-event-search-view .ves-card-body {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 0;
  line-height: 1.55;
  width: 100%;
}

.ViDsocial-event-search-view .eventCard-title {
  color: var(--vs-purple);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.25;
}

.ViDsocial-event-search-view .ves-event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--vs-muted);
  font-weight: 800;
}

.ViDsocial-event-search-view .listStartDate,
.ViDsocial-event-search-view .listStartTime {
  margin: 0;
}

.ViDsocial-event-search-view .ves-host-link {
  color: var(--vs-teal-dark);
  font-weight: 900;
  text-decoration: none;
}

.ViDsocial-event-search-view .ves-host-link:hover,
.ViDsocial-event-search-view .ves-host-link:focus {
  color: var(--vs-purple);
  text-decoration: underline;
}

.ViDsocial-event-search-view .eventCard-location {
  color: var(--vs-purple);
  font-weight: 900;
}

.ViDsocial-event-search-view .listDescription {
  margin: 0;
  color: var(--vs-ink);
  line-height: 1.6;
}

.ViDsocial-event-search-view .ves-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  color: var(--vs-muted);
  box-shadow: none;
}

.ViDsocial-event-search-view .ves-page-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ViDsocial-event-search-view .ves-pagination .ViDsocial-btn {
  min-height: 34px;
  padding: 0 13px;
  font-size: 0.9rem;
}

.ViDsocial-event-search-view .eventPage-current {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font-weight: 900;
}

.ViDsocial-event-search-view .ViDsocial-btn.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.ViDsocial-event-search-view .ves-pagination-bottom {
  margin: 0 22px 22px;
}

.ViDsocial-event-search-view .ves-empty {
  margin: 0;
  padding: 26px 0;
  color: var(--vs-muted);
  text-align: center;
}

@media (max-width: 1080px) {
  .ViDsocial-event-search-view .ves-filter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ViDsocial-event-search-view .ves-search-main,
  .ViDsocial-event-search-view .ves-filter-grid,
  .ViDsocial-event-search-view .ves-event-card,
  .ViDsocial-event-search-view .ves-event-card-guest {
    grid-template-columns: 1fr;
  }

  .ViDsocial-event-search-view .ves-results-header {
    display: grid;
  }

  .ViDsocial-event-search-view .ves-pagination,
  .ViDsocial-event-search-view .ves-pagination-bottom {
    justify-content: flex-start;
  }
}

/* Message Center */

.ViDsocial-message-center {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
  color: var(--vs-ink);
}

.ViDsocial-message-center .vmc-shell-block,
.ViDsocial-message-center .vmc-section,
.ViDsocial-message-center .vidsocial-messageInbox,
.ViDsocial-message-center .vidsocial-notifications {
  width: 100%;
}

.ViDsocial-message-center .vmc-subnav {
  justify-content: center;
  margin-block: 0;
  background: var(--vs-purple-soft);
}

.ViDsocial-message-center .vmc-subnav .tabToggle,
.ViDsocial-message-center .notifications-subnav-title {
  border: 1px solid rgba(85, 36, 72, 0.18);
  background: var(--vs-surface);
  color: var(--vs-purple-dark);
}

.ViDsocial-message-center .vmc-subnav .tabToggle:hover,
.ViDsocial-message-center .vmc-subnav .tabToggle:focus {
  border-color: var(--vs-teal);
  background: var(--vs-teal-soft);
  color: var(--vs-purple-dark);
  text-decoration: none;
}

.ViDsocial-message-center .vmc-subnav .activeTab,
.ViDsocial-message-center .vmc-subnav .is-active,
.ViDsocial-message-center .notifications-subnav-title {
  border-color: var(--vs-purple);
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-message-center #ViDsocial-filter-by,
.ViDsocial-message-center .vmc-subnav select {
  width: auto;
  max-width: 100%;
  min-height: 42px;
  padding: 8px 38px 8px 14px;
  border: 1px solid rgba(85, 36, 72, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple-dark);
  font-weight: 850;
}

.ViDsocial-message-center .tab-view.is-loading,
.ViDsocial-message-center .vidsocial-inboxholder.is-loading,
.ViDsocial-message-center .vidsocial-notifications-holder.is-loading {
  opacity: 0.65;
  pointer-events: none;
}

.ViDsocial-message-center .vmc-panel,
.ViDsocial-message-center .vidsocial-messageInbox,
.ViDsocial-message-center .vidsocial-notifications,
.ViDsocial-message-center .notification-panel,
.ViDsocial-message-center .vmc-compose-panel {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(85, 36, 72, 0.14);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  box-shadow: 0 12px 30px rgba(47, 39, 48, 0.08);
  margin: 0;
}

.ViDsocial-message-center .vmc-toolbar,
.ViDsocial-message-center .notification-toolbar,
.ViDsocial-message-center .ViDsocial-result-filters,
.ViDsocial-message-center .vmc-compose-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.14);
  background: #fff;
}

.ViDsocial-message-center .ViDsocial-result-filters br {
  display: none;
}

.ViDsocial-message-center .ViDsocial-result-filters .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
  margin: 0;
}

.ViDsocial-message-center h5 {
  margin: 0;
  color: var(--vs-purple);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.ViDsocial-message-center .vmc-subtitle,
.ViDsocial-message-center .notification-subtitle {
  display: block;
  margin-top: 4px;
  color: var(--vs-muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.ViDsocial-message-center .vmc-meta,
.ViDsocial-message-center .notification-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  color: var(--vs-muted);
  font-size: 0.9rem;
}

.ViDsocial-message-center .vmc-meta strong,
.ViDsocial-message-center .notification-meta strong {
  color: var(--vs-purple);
}

.ViDsocial-message-center .vmc-tool-row,
.ViDsocial-message-center .notification-tool-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 22px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.12);
  background: var(--vs-purple-soft);
}

.ViDsocial-message-center .vmc-bulk-actions,
.ViDsocial-message-center .notification-bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ViDsocial-message-center .notification-action,
.ViDsocial-message-center .btn,
.ViDsocial-message-center .checkAll,
.ViDsocial-message-center .deleteAll,
.ViDsocial-message-center .vmc-bulk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(85, 36, 72, 0.2);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-message-center .notification-action.secondary,
.ViDsocial-message-center .prePage,
.ViDsocial-message-center .nextPage,
.ViDsocial-message-center .checkAll {
  background: #fff;
  color: var(--vs-purple);
}

.ViDsocial-message-center .notification-action:hover,
.ViDsocial-message-center .btn:hover,
.ViDsocial-message-center .checkAll:hover,
.ViDsocial-message-center .deleteAll:hover,
.ViDsocial-message-center .vmc-bulk-icon:hover {
  background: var(--vs-teal);
  color: #fff;
  outline: none;
  text-decoration: none;
}

.ViDsocial-message-center button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.ViDsocial-message-center .checkAll,
.ViDsocial-message-center .deleteAll {
  width: 38px;
  padding: 0;
  overflow: hidden;
  white-space: nowrap;
}

.ViDsocial-message-center .vmc-bulk-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.ViDsocial-message-center .vmc-screenText,
.ViDsocial-message-center .notification-screenText,
.ViDsocial-message-center .vidsocial-message-screenText {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ViDsocial-message-center .vmc-table-wrap,
.ViDsocial-message-center .notification-table-wrap {
  overflow-x: auto;
}

.ViDsocial-message-center .vmc-table,
.ViDsocial-message-center .notification-table,
.ViDsocial-message-center .ViDsocial-table,
.ViDsocial-message-center .vidsocial-message-table {
  table-layout: fixed;
  width: 100%;
  max-width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: transparent;
}

.ViDsocial-message-center table th {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.14);
  background: var(--vs-purple-soft);
  color: var(--vs-purple);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.ViDsocial-message-center table td {
  padding: 14px 10px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.1);
  background: rgba(255, 255, 255, 0.88);
  color: var(--vs-ink);
  font-size: 0.94rem;
  line-height: 1.45;
  vertical-align: middle;
}

.ViDsocial-message-center tr.unread td,
.ViDsocial-message-center .vidsocial-message-row.unread td,
.ViDsocial-message-center .notification-row.unread td {
  background: #fff;
  font-weight: 850;
}

.ViDsocial-message-center .vmc-select-header,
.ViDsocial-message-center .vmc-select-cell,
.ViDsocial-message-center td[data-label="Select"],
.ViDsocial-message-center .notification-select {
  width: 66px;
  text-align: center;
}

.ViDsocial-message-center .vmc-star-header,
.ViDsocial-message-center .vmc-star-cell,
.ViDsocial-message-center td[data-label="Favorite"],
.ViDsocial-message-center td[data-label="Star"],
.ViDsocial-message-center .notification-star {
  width: 70px;
  text-align: center;
}

.ViDsocial-message-center .vmc-actions-header,
.ViDsocial-message-center .vmc-actions-cell,
.ViDsocial-message-center td[data-label="Actions"],
.ViDsocial-message-center .notification-actions {
  width: 148px;
  text-align: center;
  white-space: nowrap;
}

.ViDsocial-message-center .vmc-date-header,
.ViDsocial-message-center .vmc-date-cell,
.ViDsocial-message-center td[data-label="Sent"],
.ViDsocial-message-center .notification-date {
  width: 128px;
}

.ViDsocial-message-center .vmc-open-button,
.ViDsocial-message-center .openMessage,
.ViDsocial-message-center .notification-open-button {
  appearance: none;
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: transparent;
  color: var(--vs-ink);
  cursor: pointer;
  font: inherit;
  line-height: 1.45;
  text-align: left;
  text-decoration: none;
  white-space: normal;
  overflow-wrap: anywhere;
}

.ViDsocial-message-center .vmc-open-button strong,
.ViDsocial-message-center .openMessage strong,
.ViDsocial-message-center .notification-open-button strong {
  color: var(--vs-purple);
}

.ViDsocial-message-center .vmc-open-button span,
.ViDsocial-message-center .notification-open-button span {
  color: var(--vs-muted);
}

.ViDsocial-message-center .vmc-icon-button,
.ViDsocial-message-center .notification-icon-button,
.ViDsocial-message-center td[data-label="Actions"] a,
.ViDsocial-message-center td[data-label="Actions"] button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin: 2px;
  padding: 0;
  border: 1px solid rgba(85, 36, 72, 0.2);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple);
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-message-center .vmc-icon-button:hover,
.ViDsocial-message-center .notification-icon-button:hover,
.ViDsocial-message-center td[data-label="Actions"] a:hover,
.ViDsocial-message-center td[data-label="Actions"] button:hover {
  border-color: var(--vs-teal);
  background: var(--vs-teal);
  color: #fff;
  outline: none;
  text-decoration: none;
}

.ViDsocial-message-center .starMessage {
  color: var(--vs-purple);
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-message-center .starMessage:hover {
  color: var(--vs-teal-dark);
}

.ViDsocial-message-center .messageDropdown,
.ViDsocial-message-center .notification-dropdown,
.ViDsocial-message-center .vmc-dropdown-row {
  display: none;
}

.ViDsocial-message-center .messageDropdown td,
.ViDsocial-message-center .notification-dropdown td,
.ViDsocial-message-center .vmc-dropdown-row td {
  padding: 0 22px 18px;
  background: #fff;
}

.ViDsocial-message-center .inboxMessageDisplay {
  padding: 16px;
  border-left: 4px solid var(--vs-purple);
  border-radius: 0 var(--vs-radius-sm) var(--vs-radius-sm) 0;
  background: var(--vs-paper-light);
  color: var(--vs-ink);
  line-height: 1.55;
}

.ViDsocial-message-center .notification-empty,
.ViDsocial-message-center .vidsocial-message-error {
  padding: 26px 18px;
  color: var(--vs-muted);
  text-align: center;
}

.ViDsocial-message-center .notification-status,
.ViDsocial-message-center .vmc-status {
  color: var(--vs-muted);
  font-size: 0.9rem;
}

.ViDsocial-message-center .notification-status.is-error,
.ViDsocial-message-center .vmc-status.is-error {
  color: var(--vs-red-dark);
}

.ViDsocial-message-center .notification-status.is-success,
.ViDsocial-message-center .vmc-status.is-success {
  color: var(--vs-teal-dark);
}

.ViDsocial-message-center .vmc-compose-body {
  display: grid;
  gap: 14px;
  padding: 18px 22px 22px;
}

.ViDsocial-message-center .vmc-field {
  position: relative;
  display: grid;
  gap: 7px;
}

.ViDsocial-message-center .vidsocial-required-alert {
  display: none;
  padding: 8px 10px;
  border: 1px solid var(--vs-red-dark);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.ViDsocial-message-center .autoLoagContactList {
  position: absolute;
  z-index: 20;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
}

.ViDsocial-message-center .vmc-compose-actions {
  display: flex;
  justify-content: flex-end;
  padding-inline-end: clamp(0px, 6vw, 88px);
}



@media (max-width: 760px) {
  .ViDsocial-message-center .vmc-subnav {
    gap: 8px;
  }

  .ViDsocial-message-center .vmc-compose-actions {
    padding-inline-end: 0;
  }

  .ViDsocial-message-center .vmc-subnav .tabToggle,
  .ViDsocial-message-center .notifications-subnav-title,
  .ViDsocial-message-center #ViDsocial-filter-by {
    flex: 1 1 130px;
  }

  .ViDsocial-message-center .vmc-toolbar,
  .ViDsocial-message-center .notification-toolbar,
  .ViDsocial-message-center .ViDsocial-result-filters,
  .ViDsocial-message-center .ViDsocial-result-filters .row,
  .ViDsocial-message-center .vmc-tool-row,
  .ViDsocial-message-center .notification-tool-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ViDsocial-message-center .vmc-meta,
  .ViDsocial-message-center .notification-meta,
  .ViDsocial-message-center .vmc-page-controls,
  .ViDsocial-message-center .notification-page-controls {
    justify-content: flex-start;
    width: 100%;
  }

  .ViDsocial-message-center .vmc-table,
  .ViDsocial-message-center .notification-table,
  .ViDsocial-message-center .ViDsocial-table,
  .ViDsocial-message-center .vmc-table thead,
  .ViDsocial-message-center .notification-table thead,
  .ViDsocial-message-center .vmc-table tbody,
  .ViDsocial-message-center .notification-table tbody,
  .ViDsocial-message-center .vmc-table tr,
  .ViDsocial-message-center .notification-table tr,
  .ViDsocial-message-center .vmc-table td,
  .ViDsocial-message-center .notification-table td {
    display: block;
    width: 100%;
  }

  .ViDsocial-message-center .vmc-table thead,
  .ViDsocial-message-center .notification-table thead {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .ViDsocial-message-center .notification-row,
  .ViDsocial-message-center .vidsocial-message-row {
    overflow: hidden;
    margin: 12px;
    border: 1px solid rgba(85, 36, 72, 0.14);
    border-radius: var(--vs-radius);
    background: #fff;
    box-shadow: 0 8px 22px rgba(47, 39, 48, 0.08);
  }

  .ViDsocial-message-center .vmc-table td,
  .ViDsocial-message-center .notification-table td {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    border-bottom: 1px solid rgba(85, 36, 72, 0.08);
    text-align: left;
    white-space: normal;
  }

  .ViDsocial-message-center .vmc-table td::before,
  .ViDsocial-message-center .notification-table td::before {
    content: attr(data-label);
    color: var(--vs-muted);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .ViDsocial-message-center .vmc-actions-cell,
  .ViDsocial-message-center .notification-actions,
  .ViDsocial-message-center td[data-label="Actions"] {
    white-space: normal;
  }

  .ViDsocial-message-center .messageDropdown,
  .ViDsocial-message-center .notification-dropdown,
  .ViDsocial-message-center .vmc-dropdown-row {
    overflow: hidden;
    margin: -12px 12px 12px;
    border: 1px solid rgba(85, 36, 72, 0.14);
    border-top: 0;
    border-radius: 0 0 var(--vs-radius) var(--vs-radius);
  }

  .ViDsocial-message-center .messageDropdown td,
  .ViDsocial-message-center .notification-dropdown td,
  .ViDsocial-message-center .vmc-dropdown-row td {
    display: block;
    padding: 0 14px 14px;
  }

  .ViDsocial-message-center .messageDropdown td::before,
  .ViDsocial-message-center .notification-dropdown td::before,
  .ViDsocial-message-center .vmc-dropdown-row td::before,
  .ViDsocial-message-center .vmc-empty-row td::before,
  .ViDsocial-message-center .notification-empty-row td::before {
    content: none;
  }
}

@media (max-width: 420px) {
  .ViDsocial-message-center .vmc-table td,
  .ViDsocial-message-center .notification-table td {
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 12px 10px;
  }

  .ViDsocial-message-center .vmc-icon-button,
  .ViDsocial-message-center .notification-icon-button,
  .ViDsocial-message-center td[data-label="Actions"] a,
  .ViDsocial-message-center td[data-label="Actions"] button {
    width: 32px;
    height: 32px;
  }
}


/* Gallery View */

.ViDsocial-gallery-view {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
  color: var(--vs-ink);
}

.ViDsocial-gallery-view .vg-shell-block,
.ViDsocial-gallery-view .vg-section {
  width: 100%;
}

.ViDsocial-gallery-view .ViDsocial-gallery-subNavagation {
  justify-content: center;
  margin-block: 0;
  background: var(--vs-purple-soft);
}

.ViDsocial-gallery-view .ViDsocial-gallery-subNavagation .tabToggle {
  border: 1px solid rgba(85, 36, 72, 0.18);
  background: var(--vs-surface);
  color: var(--vs-purple-dark);
}

.ViDsocial-gallery-view .ViDsocial-gallery-subNavagation .tabToggle:hover,
.ViDsocial-gallery-view .ViDsocial-gallery-subNavagation .tabToggle:focus {
  border-color: var(--vs-teal);
  background: var(--vs-teal-soft);
  color: var(--vs-purple-dark);
  text-decoration: none;
}

.ViDsocial-gallery-view .ViDsocial-gallery-subNavagation .activeTab,
.ViDsocial-gallery-view .ViDsocial-gallery-subNavagation .is-active {
  border-color: var(--vs-purple);
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-gallery-view .vg-panel {
  overflow: hidden;
  width: 100%;
  border: 1px solid rgba(85, 36, 72, 0.14);
  border-radius: var(--vs-radius);
  background: var(--vs-surface);
  box-shadow: 0 12px 30px rgba(47, 39, 48, 0.08);
}

.ViDsocial-gallery-view .vg-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(85, 36, 72, 0.14);
  background: #fff;
}

.ViDsocial-gallery-view .vg-panel-header h4 {
  margin: 0;
  color: var(--vs-purple);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.2;
}

.ViDsocial-gallery-view .vg-status {
  color: var(--vs-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.ViDsocial-gallery-view .vg-status.is-error {
  color: var(--vs-red-dark);
}

.ViDsocial-gallery-view .vg-status.is-success {
  color: var(--vs-teal-dark);
}

.ViDsocial-gallery-view .gallery-grid,
.ViDsocial-gallery-view .preview-grid {
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  padding: 22px;
}

.ViDsocial-gallery-view .gallery-item,
.ViDsocial-gallery-view .preview-item {
  box-shadow: 0 8px 22px rgba(47, 39, 48, 0.08);
}

.ViDsocial-gallery-view .gallery-lightbox-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ViDsocial-gallery-view .gallery-thumb,
.ViDsocial-gallery-view .preview-thumb {
  overflow: hidden;
  background: var(--vs-purple-soft);
}

.ViDsocial-gallery-view .gallery-thumb img,
.ViDsocial-gallery-view .preview-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.18s ease;
}

.ViDsocial-gallery-view .gallery-lightbox-link:hover img,
.ViDsocial-gallery-view .gallery-lightbox-link:focus img {
  transform: scale(1.04);
}

.ViDsocial-gallery-view .noImageFound {
  grid-column: 1 / -1;
  margin: 0;
}

.ViDsocial-gallery-view .upload-dropzone {
  margin: 22px 22px 0;
}

.ViDsocial-gallery-view .vg-actions {
  padding: 0 22px 22px;
}

.ViDsocial-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.ViDsocial-gallery-modal.is-open {
  display: flex;
}

.ViDsocial-gallery-modalBackdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.ViDsocial-gallery-modalDialog {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  border-radius: var(--vs-radius-sm);
}

.ViDsocial-gallery-modalImage {
  display: block;
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: var(--vs-radius-sm);
  background: #111;
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.42);
}

.ViDsocial-gallery-modalClose {
  position: absolute;
  top: -14px;
  right: -14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: var(--vs-purple);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.ViDsocial-gallery-modalClose:hover,
.ViDsocial-gallery-modalClose:focus {
  background: var(--vs-purple-dark);
  outline: 2px solid rgba(255, 255, 255, 0.75);
  outline-offset: 2px;
}

.vg-js-bootstrap {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 760px) {
  .ViDsocial-gallery-view .ViDsocial-gallery-subNavagation {
    gap: 8px;
  }

  .ViDsocial-gallery-view .ViDsocial-gallery-subNavagation .tabToggle {
    flex: 1 1 130px;
  }

  .ViDsocial-gallery-view .vg-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ViDsocial-gallery-view .gallery-grid,
  .ViDsocial-gallery-view .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }

  .ViDsocial-gallery-view .upload-dropzone {
    margin: 14px 14px 0;
  }

  .ViDsocial-gallery-view .vg-actions {
    padding: 0 14px 14px;
  }

  .ViDsocial-gallery-modal {
    padding: 12px;
  }

  .ViDsocial-gallery-modalClose {
    top: 8px;
    right: 8px;
  }
}

@media (max-width: 430px) {
  .ViDsocial-gallery-view .gallery-grid,
  .ViDsocial-gallery-view .preview-grid {
    grid-template-columns: 1fr;
  }
}


/* Trailer Gallery View */

.ViDsocial-trailer-gallery-view {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
  color: var(--vs-ink);
}

.ViDsocial-trailer-gallery-view .sotf-panel {
  overflow: hidden;
}

.ViDsocial-trailer-gallery-view .trailer-gallery-status {
  color: var(--vs-muted);
  font-size: 0.9rem;
  font-weight: 850;
}

.ViDsocial-trailer-gallery-view .trailer-gallery-status.is-error {
  color: var(--vs-red-dark);
}

.ViDsocial-trailer-gallery-view .trailer-gallery-status.is-success {
  color: var(--vs-teal-dark);
}

.ViDsocial-trailer-gallery-view .trailer-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
  padding: 22px;
  background: #fff;
}

.ViDsocial-trailer-gallery-view .trailer-gallery-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(85, 36, 72, 0.14);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-surface);
  color: var(--vs-ink);
  text-align: left;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(47, 39, 48, 0.08);
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

.ViDsocial-trailer-gallery-view .trailer-gallery-card:hover,
.ViDsocial-trailer-gallery-view .trailer-gallery-card:focus {
  border-color: var(--vs-teal);
  outline: 0;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(47, 39, 48, 0.14);
}

.ViDsocial-trailer-gallery-view .trailer-gallery-frame {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--vs-purple-soft);
}

.ViDsocial-trailer-gallery-view .trailer-gallery-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.18s ease;
}

.ViDsocial-trailer-gallery-view .trailer-gallery-card:hover .trailer-gallery-image,
.ViDsocial-trailer-gallery-view .trailer-gallery-card:focus .trailer-gallery-image {
  transform: scale(1.04);
}

.ViDsocial-trailer-gallery-view .trailer-gallery-title {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 10px 12px;
  background: var(--vs-purple);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.ViDsocial-trailer-gallery-view .trailerGallery-empty {
  grid-column: 1 / -1;
  margin: 0;
}

.ViDsocial-trailer-gallery-view .trailer-gallery-actions {
  display: flex;
  justify-content: center;
  padding: 0 22px 22px;
  background: #fff;
}

@media (max-width: 760px) {
  .ViDsocial-trailer-gallery-view .trailer-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 14px;
  }

  .ViDsocial-trailer-gallery-view .trailer-gallery-actions {
    padding: 0 14px 14px;
  }
}

@media (max-width: 430px) {
  .ViDsocial-trailer-gallery-view .trailer-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Content-only page frame */

.ViDsocial-content-frame {
  padding: 26px;
  border: 18px solid rgba(226, 207, 170, 0.72);
  background:
    linear-gradient(rgba(248, 238, 220, 0.92), rgba(248, 238, 220, 0.92)),
    repeating-linear-gradient(0deg, #f2e3c6 0 16px, #ead8b8 18px 34px);
}

.ViDsocial-content-inner {
  padding: clamp(24px, 4vw, 56px);
  background: rgba(255, 249, 239, 0.96);
}

.ViDsocial-page-title {
  margin: 0 0 22px;
  text-align: center;
}

.ViDsocial-page-title h2 {
  margin: 0;
  color: var(--vs-red);
  font-family: var(--vs-font-display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  line-height: 0.95;
  text-shadow: 1px 1px 0 rgba(85, 36, 72, 0.2);
}

.ViDsocial-page-title p {
  margin: 10px 0 0;
  color: var(--vs-muted);
}

.ViDsocial-auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 360px));
  justify-content: center;
  gap: clamp(22px, 4vw, 36px);
}

.ViDsocial-auth-card {
  min-height: 280px;
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--vs-radius);
  background: #fff;
  box-shadow: 0 18px 38px rgba(65, 44, 37, 0.14);
}

.ViDsocial-auth-card h3 {
  margin: 0 0 18px;
  color: var(--vs-red);
  font-family: var(--vs-font-display);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(85, 36, 72, 0.16);
}

.ViDsocial-auth-card .ViDsocial-btn {
  min-width: 122px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ViDsocial-teal-title-band {
  padding: 28px clamp(22px, 5vw, 64px);
  background: var(--vs-teal);
  color: #fff;
}

.ViDsocial-teal-title-band h1 {
  margin: 0 0 12px;
  color: var(--vs-paper);
  font-family: var(--vs-font-display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
  text-shadow: 1px 1px 0 rgba(85, 36, 72, 0.3);
}

.ViDsocial-teal-title-band p {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 780px) {
  .ViDsocial-auth-grid {
    grid-template-columns: 1fr;
  }

  .ViDsocial-content-frame {
    padding: 12px;
    border-width: 10px;
  }

  .ViDsocial-content-inner {
    padding: 22px 14px;
  }
}


/* Responsive */

@media (max-width: 900px) {
  .kit-hero,
  .kit-grid,
  .kit-grid-3 {
    grid-template-columns: 1fr;
  }

  .ViDsocial-profile-header-main,
  .ViDsocial-horizontal-card,
  .settings-row {
    grid-template-columns: 1fr;
  }

  .kit-section-header {
    display: grid;
  }
}

@media (max-width: 640px) {
  .kit-shell {
    width: min(100% - 20px, var(--vs-width));
    padding-top: 18px;
  }

  .kit-section {
    padding: 16px;
  }

  .ViDsocial-field-row {
    grid-template-columns: 1fr;
  }

  .ViDsocial-list-row {
    grid-template-columns: 1fr;
  }

  .row-actions,
  .notification-actions,
  .message-actions {
    justify-content: flex-start;
  }

  .ViDsocial-main-nav,
  .ViDsocial-profile-subNavagation {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}


/* Public-site footer / teal band reference */

.ViDsocial-footer-band {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(180px, 0.5fr) minmax(260px, 1fr);
  gap: 28px;
  padding: 28px;
  border-radius: var(--vs-radius);
  background: var(--vs-teal);
  color: #fff;
}

.ViDsocial-footer-band h3 {
  margin: 0 0 10px;
  color: var(--vs-purple);
  font-family: var(--vs-font-display);
  font-size: 1.25rem;
}

.ViDsocial-footer-band p,
.ViDsocial-footer-band a {
  color: #fff;
}

.ViDsocial-footer-band input {
  width: 100%;
  min-height: 42px;
  border: 0;
  padding: 10px 12px;
  font: inherit;
}

.ViDsocial-footer-band .ViDsocial-btn {
  background: var(--vs-red);
  border-color: var(--vs-red-dark);
}


/* Profile edit view */

.ViDsocial-profile-page {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
  color: var(--vs-ink);
}

.ViDsocial-profile-page .vidsocial-profile-page-section,
.ViDsocial-profile-page > .ViDsocial-profile-subNavagation,
.ViDsocial-profile-page > .tab-view {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.ViDsocial-profile-page .sotf-sub-menu-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: var(--vs-radius);
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page .sotf-sub-menu-bar .tabToggle {
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid rgba(116, 51, 97, 0.22);
  background: #fff;
  color: var(--vs-purple-dark);
  font-weight: 900;
  line-height: 1.2;
}

.ViDsocial-profile-page .sotf-sub-menu-bar .tabToggle:hover,
.ViDsocial-profile-page .sotf-sub-menu-bar .tabToggle:focus {
  border-color: var(--vs-teal);
  background: var(--vs-teal-soft);
  color: var(--vs-purple-dark);
  text-decoration: none;
}

.ViDsocial-profile-page .sotf-sub-menu-bar .tabToggle.activeTab,
.ViDsocial-profile-page .sotf-sub-menu-bar .tabToggle.is-active {
  border-color: var(--vs-purple);
  background: var(--vs-purple);
  color: #fff;
}

.ViDsocial-profile-page > .tab-view {
  display: grid !important;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--vs-shadow);
}

.ViDsocial-profile-page .sotf-profile-form {
  display: grid;
  gap: 20px;
}

.ViDsocial-profile-page .sotf-profile-form .sotf-form-title {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(116, 51, 97, 0.14);
}

.ViDsocial-profile-page .sotf-profile-form .sotf-form-section {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-left: 5px solid var(--vs-teal);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-profile-page .sotf-profile-form .sotf-form-section h5 {
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(116, 51, 97, 0.12);
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ViDsocial-profile-page .sotf-profile-form .sotf-form-grid {
  gap: 16px;
}

.ViDsocial-profile-page .sotf-profile-form .sotf-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px 14px;
}

.ViDsocial-profile-page .sotf-profile-form .sotf-checkbox-grid label {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius-xs);
  background: rgba(255, 255, 255, 0.72);
  line-height: 1.25;
}

.ViDsocial-profile-page .sotf-profile-form .sotf-checkbox-grid input[type="checkbox"] {
  margin: 2px 0 0;
}

.ViDsocial-profile-page .sotf-profile-form .sotf-button-row,
.ViDsocial-profile-page .sotf-profile-form .sotf-form-actions {
  margin-top: 2px;
}

.ViDsocial-profile-page > .tab-view h3,
.ViDsocial-profile-page > .tab-view h4,
.ViDsocial-profile-page > .tab-view h5 {
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
}

.ViDsocial-profile-page > .tab-view h3,
.ViDsocial-profile-page > .tab-view h4 {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(116, 51, 97, 0.14);
}

.ViDsocial-profile-page .equalParts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 0;
}

.ViDsocial-profile-page .equalParts.header {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0 0;
  padding: 16px 18px 12px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-left: 5px solid var(--vs-teal);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-profile-page > .tab-view h4 + .equalParts.header,
.ViDsocial-profile-page > .tab-view .equalParts.header:first-of-type {
  margin-top: 0;
}

.ViDsocial-profile-page .equalParts.header h5 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ViDsocial-profile-page .equalParts_flex {
  display: grid;
  gap: 8px;
  align-content: start;
}

.ViDsocial-profile-page input[type="text"],
.ViDsocial-profile-page input[type="email"],
.ViDsocial-profile-page input[type="password"],
.ViDsocial-profile-page input[type="username"],
.ViDsocial-profile-page input[type="date"],
.ViDsocial-profile-page input[type="file"],
.ViDsocial-profile-page select,
.ViDsocial-profile-page textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(116, 51, 97, 0.24);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  font: inherit;
}

.ViDsocial-profile-page textarea {
  min-height: 116px;
  resize: vertical;
}

.ViDsocial-profile-page #ViDsocial-userExtLikes,
.ViDsocial-profile-page #ViDsocial-userExtBios {
  min-height: 138px;
}

.ViDsocial-profile-page input:disabled {
  background: var(--vs-paper-light);
  color: var(--vs-muted);
}

.ViDsocial-profile-page #ViDsocial-inputLabel,
.ViDsocial-profile-page label {
  color: var(--vs-purple-dark);
  font-weight: 850;
}

.ViDsocial-profile-page .password-hint,
.ViDsocial-profile-page small {
  color: var(--vs-muted);
}

.ViDsocial-profile-page .visSwitch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(85, 36, 72, 0.06);
}

.ViDsocial-profile-page .visSwitch .switchLabel {
  grid-column: 1 / -1;
  padding: 7px 14px 5px;
  color: var(--vs-purple-dark);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.ViDsocial-profile-page .visSwitch_ON,
.ViDsocial-profile-page .visSwitch_OFF {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  min-height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: transparent;
  color: var(--vs-purple-dark);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.ViDsocial-profile-page .visSwitch_ON.activeTab,
.ViDsocial-profile-page .visSwitch_OFF.activeTab {
  background: var(--vs-teal);
  color: #fff;
  box-shadow: inset 0 0 0 1px var(--vs-teal-dark);
}

.ViDsocial-profile-page .sotf-toggle-row.visSwitch {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  width: auto;
  min-width: 0;
  padding: 8px 10px 8px 14px;
  border: 1px solid rgba(116, 51, 97, 0.18);
  border-radius: 999px;
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page .sotf-toggle-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ViDsocial-profile-page .sotf-toggle-copy strong {
  color: var(--vs-purple-dark);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.1;
}

.ViDsocial-profile-page .sotf-toggle-copy small {
  color: var(--vs-muted);
  font-size: 0.74rem;
  font-weight: 800;
  line-height: 1.1;
}

.ViDsocial-profile-page .sotf-toggle {
  position: relative;
  display: inline-flex;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
}

.ViDsocial-profile-page .sotf-toggle-input {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.ViDsocial-profile-page .sotf-toggle > span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(116, 51, 97, 0.22);
}

.ViDsocial-profile-page .sotf-toggle > span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--vs-purple);
  transition: transform 160ms ease, background 160ms ease;
}

.ViDsocial-profile-page .sotf-toggle-input:checked + span {
  background: var(--vs-teal-soft);
  box-shadow: inset 0 0 0 1px var(--vs-teal);
}

.ViDsocial-profile-page .sotf-toggle-input:checked + span::before {
  background: var(--vs-teal);
  transform: translateX(20px);
}

.ViDsocial-profile-page .vidsocial-required-alert {
  display: none;
  padding: 8px 10px;
  border: 1px solid var(--vs-red-dark);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
  font-size: 0.86rem;
  font-weight: 850;
}

.ViDsocial-profile-page .regionSelector {
  gap: 12px 18px !important;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)) !important;
  padding: 14px 0 4px !important;
}

.ViDsocial-profile-page .regionSelector label,
.ViDsocial-profile-page .regionSelector span {
  line-height: 1.35;
}

.ViDsocial-profile-page .updateUser,
.ViDsocial-profile-page .printBtn,
.ViDsocial-profile-page #submit_profile,
.ViDsocial-profile-page #submit_cover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid rgba(116, 51, 97, 0.22);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-profile-page .updateUser:hover,
.ViDsocial-profile-page .printBtn:hover,
.ViDsocial-profile-page #submit_profile:hover,
.ViDsocial-profile-page #submit_cover:hover {
  background: var(--vs-purple-dark);
  color: #fff;
  text-decoration: none;
}

.ViDsocial-profile-page #profileUploadForm,
.ViDsocial-profile-page #coverUploadForm {
  display: grid;
  gap: 10px;
  margin: 12px 0 22px;
  padding: 18px;
  border: 1px dashed rgba(116, 51, 97, 0.28);
  border-radius: var(--vs-radius);
  background: var(--vs-paper-light);
}

.ViDsocial-profile-page #uploadBar {
  background: var(--vs-teal);
}

/* Public member profile view */

.ViDsocial-member-profile-page {
  display: grid;
  gap: 18px;
  padding: 20px 0 34px;
}

.ViDsocial-member-profile-page > .ViDsocial-timeline-section,
.ViDsocial-member-profile-page > .ViDsocial-profile-subNavagation,
.ViDsocial-member-profile-page > .tab-view {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.sotf-member-profile-nav {
  display: block;
}

.sotf-member-report-button {
  margin-left: auto;
  flex: 0 0 auto;
  color: var(--vs-red-dark);
  background: var(--vs-paper-light);
}

.ViDsocial-member-profile-page .sotf-sub-menu-bar {
  background: var(--vs-purple-soft);
}

.ViDsocial-member-profile-page .tab-view {
  display: block;
}

.sotf-member-profile-card .sotf-panel-body {
  display: grid;
  gap: 18px;
}

.sotf-profile-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.sotf-profile-detail-section {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-left: 5px solid var(--vs-teal);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.sotf-profile-detail-section h3 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(116, 51, 97, 0.14);
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-size: 1.12rem;
}

.sotf-profile-detail-section p {
  margin: 0;
}

.sotf-profile-definition-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.sotf-profile-definition-list > div {
  display: grid;
  gap: 3px;
}

.sotf-profile-definition-list dt {
  margin: 0;
  color: var(--vs-purple-dark);
  font-weight: 900;
}

.sotf-profile-definition-list dd {
  margin: 0;
  color: var(--vs-ink);
}

.sotf-member-trailer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(260px, 1fr);
  gap: 18px;
  align-items: start;
}

.sotf-member-trailer-media {
  overflow: hidden;
  margin: 0;
  border: 10px solid var(--vs-purple-soft);
  border-radius: var(--vs-radius);
  background: var(--vs-purple-soft);
  box-shadow: var(--vs-shadow-soft);
}

.sotf-member-trailer-media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sotf-report-modal {
  position: fixed;
  z-index: 9999;
  inset: 0;
}

.sotf-report-modal-backdrop {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
}

.sotf-report-dialog {
  display: grid;
  gap: 14px;
  width: min(100%, 420px);
  padding: 18px;
  border-radius: var(--vs-radius);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.sotf-report-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--vs-line);
}

.sotf-report-header h3 {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
}

.sotf-report-dialog .typeBlock_select {
  display: none;
}

.ViDsocial-profile-page .sotf-profile-photo-section {
  display: grid;
  gap: 22px;
}

.ViDsocial-profile-page .sotf-profile-photo-section * {
  box-sizing: border-box;
}

.ViDsocial-profile-page .sotf-profile-photo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: var(--vs-radius);
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page .sotf-profile-photo-header h3,
.ViDsocial-profile-page .sotf-photo-upload-heading h4 {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-weight: 400;
}

.ViDsocial-profile-page .sotf-profile-photo-header p {
  margin: 5px 0 0;
  color: var(--vs-muted);
  font-size: 0.92rem;
}

.ViDsocial-profile-page .sotf-profile-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.ViDsocial-profile-page .sotf-photo-upload-card {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--vs-shadow);
}

.ViDsocial-profile-page .sotf-photo-upload-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(116, 51, 97, 0.14);
}

.ViDsocial-profile-page .sotf-photo-upload-heading small,
.ViDsocial-profile-page .sotf-photo-upload-card > small {
  color: var(--vs-muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.ViDsocial-profile-page .sotf-photo-dropzone {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 144px;
  padding: 16px;
  overflow: hidden;
  border: 2px dashed rgba(116, 51, 97, 0.28);
  border-radius: var(--vs-radius);
  background: linear-gradient(180deg, rgba(246, 237, 243, 0.96), rgba(255, 255, 255, 0.94));
  color: var(--vs-ink);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.ViDsocial-profile-page .sotf-photo-dropzone:hover,
.ViDsocial-profile-page .sotf-photo-dropzone:focus,
.ViDsocial-profile-page .sotf-photo-dropzone:focus-within,
.ViDsocial-profile-page .sotf-photo-dropzone.is-dragging {
  border-color: var(--vs-teal);
  box-shadow: 0 0 0 4px rgba(0, 175, 174, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.ViDsocial-profile-page .sotf-photo-dropzone.is-dragging {
  background: linear-gradient(180deg, rgba(231, 249, 249, 0.96), rgba(255, 255, 255, 0.94));
}

.ViDsocial-profile-page .sotf-photo-dropzone-preview {
  display: grid;
  place-items: center;
  width: 112px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page .sotf-photo-dropzone.is-cover .sotf-photo-dropzone-preview {
  aspect-ratio: 4 / 3;
}

.ViDsocial-profile-page .sotf-photo-dropzone-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ViDsocial-profile-page .sotf-photo-dropzone-copy {
  display: grid;
  gap: 5px;
  color: var(--vs-muted);
  font-weight: 800;
  line-height: 1.35;
}

.ViDsocial-profile-page .sotf-photo-dropzone-copy strong {
  color: var(--vs-purple-dark);
  font-size: 1rem;
  font-weight: 900;
}

.ViDsocial-profile-page .sotf-photo-dropzone-status {
  overflow: hidden;
  color: var(--vs-teal-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 850;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ViDsocial-profile-page .sotf-photo-native-file {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.ViDsocial-profile-page .sotf-upload-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
}

.ViDsocial-profile-page .sotf-upload-modal .box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, calc(100vw - 32px));
  padding: 24px;
  border-radius: var(--vs-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: translate(-50%, -50%);
}

.ViDsocial-profile-page #photoUploadBarWrap {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page #photoUploadBar {
  width: 0%;
  height: 100%;
  background: var(--vs-teal);
}

.ViDsocial-profile-page #photoUploadPct {
  margin-top: 10px;
  color: var(--vs-ink);
  font-size: 0.78rem;
}

.ViDsocial-profile-page .certMemberHolder {
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius);
  background: var(--vs-paper-light);
}

.ViDsocial-profile-page .sotf-trailer-section {
  display: grid;
  gap: 22px;
  width: 100%;
  color: var(--vs-ink);
}

.ViDsocial-profile-page .sotf-trailer-section * {
  box-sizing: border-box;
}

.ViDsocial-profile-page .sotf-trailer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: var(--vs-radius);
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page .sotf-trailer-header h4,
.ViDsocial-profile-page .sotf-trailer-upload-heading h5 {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-weight: 400;
}

.ViDsocial-profile-page .sotf-trailer-header p {
  margin: 5px 0 0;
  color: var(--vs-muted);
  font-size: 0.92rem;
}

.ViDsocial-profile-page .sotf-trailer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 22px;
  align-items: start;
}

.ViDsocial-profile-page .sotf-trailer-card {
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--vs-shadow);
}

.ViDsocial-profile-page .sotf-trailer-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 22px;
}

.ViDsocial-profile-page .sotf-trailer-field,
.ViDsocial-profile-page .sotf-trailer-upload {
  display: grid;
  gap: 8px;
}

.ViDsocial-profile-page .sotf-trailer-field.is-wide,
.ViDsocial-profile-page .sotf-trailer-upload.is-wide {
  grid-column: 1 / -1;
}

.ViDsocial-profile-page .sotf-trailer-field label,
.ViDsocial-profile-page .sotf-trailer-upload-heading small {
  color: var(--vs-purple-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.ViDsocial-profile-page .sotf-trailer-field input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(116, 51, 97, 0.24);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  font: inherit;
}

.ViDsocial-profile-page .sotf-trailer-field input:focus {
  border-color: var(--vs-purple);
  box-shadow: 0 0 0 3px rgba(116, 51, 97, 0.14);
  outline: none;
}

.ViDsocial-profile-page .sotf-trailer-upload-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
}

.ViDsocial-profile-page .sotf-trailer-upload form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.ViDsocial-profile-page .sotf-trailer-dropzone {
  position: relative;
  display: grid;
  grid-template-columns: 108px 1fr;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 136px;
  padding: 16px;
  overflow: hidden;
  border: 2px dashed rgba(116, 51, 97, 0.28);
  border-radius: var(--vs-radius);
  background: linear-gradient(180deg, rgba(246, 237, 243, 0.96), rgba(255, 255, 255, 0.94));
  color: var(--vs-ink);
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background 160ms ease;
}

.ViDsocial-profile-page .sotf-trailer-dropzone:hover,
.ViDsocial-profile-page .sotf-trailer-dropzone:focus,
.ViDsocial-profile-page .sotf-trailer-dropzone:focus-within,
.ViDsocial-profile-page .sotf-trailer-dropzone.is-dragging {
  border-color: var(--vs-teal);
  box-shadow: 0 0 0 4px rgba(0, 175, 174, 0.14);
  outline: none;
  transform: translateY(-1px);
}

.ViDsocial-profile-page .sotf-trailer-dropzone-preview {
  display: grid;
  place-items: center;
  width: 108px;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page .sotf-trailer-dropzone-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ViDsocial-profile-page .sotf-trailer-dropzone-copy {
  display: grid;
  gap: 5px;
  color: var(--vs-muted);
  font-weight: 800;
  line-height: 1.3;
}

.ViDsocial-profile-page .sotf-trailer-dropzone-copy strong {
  color: var(--vs-purple-dark);
  font-size: 1rem;
  font-weight: 900;
}

.ViDsocial-profile-page .sotf-trailer-dropzone-status {
  color: var(--vs-teal-dark);
  font-size: 0.86rem;
  font-style: normal;
  font-weight: 850;
}

.ViDsocial-profile-page .sotf-trailer-native-file {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.ViDsocial-profile-page .sotf-trailer-section .sotf-button,
.ViDsocial-profile-page .sotf-trailer-section .ViDsocial-btn {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--vs-purple);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-profile-page .sotf-trailer-section .sotf-button:hover,
.ViDsocial-profile-page .sotf-trailer-section .sotf-button:focus,
.ViDsocial-profile-page .sotf-trailer-section .ViDsocial-btn:hover,
.ViDsocial-profile-page .sotf-trailer-section .ViDsocial-btn:focus {
  background: var(--vs-purple-dark);
  color: #fff;
  outline: none;
}

.ViDsocial-profile-page .sotf-trailer-section .sotf-button.is-teal {
  border-color: var(--vs-teal-dark);
  background: var(--vs-teal);
}

.ViDsocial-profile-page .sotf-trailer-section .sotf-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ViDsocial-profile-page .sotf-trailer-preview {
  padding: 10px;
}

.ViDsocial-profile-page .sotf-trailer-preview-frame {
  display: grid;
  place-items: center;
  min-height: 300px;
  overflow: hidden;
  border-radius: var(--vs-radius-sm);
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page .sotf-trailer-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 430px;
  object-fit: contain;
  border-radius: var(--vs-radius-xs);
}

.ViDsocial-profile-page #uploadModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.55);
}

.ViDsocial-profile-page #uploadModal .box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, calc(100vw - 32px));
  padding: 24px;
  border-radius: var(--vs-radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  transform: translate(-50%, -50%);
}

.ViDsocial-profile-page .sotf-upload-title {
  margin-bottom: 8px;
  color: var(--vs-purple-dark);
  font-weight: 900;
}

.ViDsocial-profile-page .sotf-upload-message {
  margin-bottom: 14px;
  color: var(--vs-muted);
  font-size: 0.9rem;
}

.ViDsocial-profile-page #uploadBarWrap {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--vs-purple-soft);
}

.ViDsocial-profile-page #uploadBar {
  width: 0%;
  height: 100%;
  background: var(--vs-teal);
}

.ViDsocial-profile-page #uploadPct {
  margin-top: 10px;
  color: var(--vs-ink);
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .ViDsocial-profile-page .vidsocial-profile-page-section,
  .ViDsocial-profile-page > .ViDsocial-profile-subNavagation,
  .ViDsocial-profile-page > .tab-view {
    width: calc(100% - 20px);
  }

  .ViDsocial-profile-page .sotf-sub-menu-bar .tabToggle {
    flex: 1 1 140px;
  }

  .ViDsocial-profile-page > .tab-view {
    padding: 18px;
  }

  .ViDsocial-profile-page .sotf-trailer-grid,
  .ViDsocial-profile-page .sotf-trailer-fields,
  .ViDsocial-profile-page .sotf-trailer-upload form,
  .ViDsocial-profile-page .sotf-profile-photo-grid {
    grid-template-columns: 1fr;
  }

  .ViDsocial-profile-page .sotf-trailer-header,
  .ViDsocial-profile-page .sotf-trailer-upload-heading,
  .ViDsocial-profile-page .sotf-profile-photo-header,
  .ViDsocial-profile-page .sotf-photo-upload-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .ViDsocial-profile-page .sotf-trailer-dropzone,
  .ViDsocial-profile-page .sotf-photo-dropzone {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .ViDsocial-profile-page .sotf-trailer-section .sotf-button,
  .ViDsocial-profile-page .sotf-photo-upload-card .sotf-button {
    width: 100%;
  }
}


/* Settings view */

.ViDsocial-settings-page,
.ViDsocial-settings-page * {
  box-sizing: border-box;
}

.ViDsocial-settings-page {
  width: 100%;
  color: var(--vs-ink);
}

.ViDsocial-settings-page .settings-shell-block,
.ViDsocial-settings-page .settings-section,
.ViDsocial-settings-page .settings-card,
.ViDsocial-settings-page .membership-status-app,
.membership-status-page .membership-status-app {
  width: 100%;
  margin: 0 auto 24px;
}

.ViDsocial-settings-page .membership-status-app,
.membership-status-page .membership-status-app {
  margin: 0 auto;
  padding: 20px;
}

.ViDsocial-settings-page .settings-subnav,
.ViDsocial-settings-page .ViDsocial-profile-subNavagation.settings-subnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 22px auto 18px;
  padding: 12px;
  background: var(--vs-purple-soft);
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: var(--vs-radius);
}

.ViDsocial-settings-page .settings-subnav .tabToggle {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 18px;
  border: 1px solid rgba(116, 51, 97, 0.22);
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple-dark);
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-settings-page .settings-subnav .tabToggle.activeTab,
.ViDsocial-settings-page .settings-subnav .tabToggle.is-active {
  background: var(--vs-purple);
  border-color: var(--vs-purple);
  color: #fff;
}

.ViDsocial-settings-page .settings-card {
  padding: 24px;
  background: var(--vs-surface);
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
}

.ViDsocial-settings-page .settings-card-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.ViDsocial-settings-page .settings-card h3,
.ViDsocial-settings-page .membership-status-card h1,
.ViDsocial-settings-page .membership-status-card h2,
.membership-status-page .membership-status-card h1,
.membership-status-page .membership-status-card h2 {
  margin-top: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
}

.ViDsocial-settings-page .settings-card p,
.ViDsocial-settings-page .membership-status-card p,
.membership-status-page .membership-status-card p {
  color: var(--vs-muted);
}

.ViDsocial-settings-page .settings-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.ViDsocial-settings-page .settings-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-settings-page .settings-toggle-row strong {
  display: block;
  color: var(--vs-purple-dark);
  font-size: 16px;
}

.ViDsocial-settings-page .settings-toggle-row small {
  display: block;
  margin-top: 4px;
  color: var(--vs-muted);
  font-size: 13px;
  line-height: 1.35;
}

.ViDsocial-settings-page .settings-toggle-row input[type="checkbox"] {
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
  accent-color: var(--vs-purple);
}

.ViDsocial-settings-page .settings-save-email,
.ViDsocial-settings-page .sotf-button,
.ViDsocial-settings-page .ViDsocial-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px !important;
  border: 1px solid rgba(116, 51, 97, 0.22) !important;
  border-radius: 999px !important;
  background: var(--vs-purple) !important;
  color: #fff !important;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  cursor: pointer;
}

.ViDsocial-settings-page .settings-save-email:hover,
.ViDsocial-settings-page .sotf-button:hover,
.ViDsocial-settings-page .ViDsocial-btn:hover {
  background: var(--vs-purple-dark) !important;
  color: #fff !important;
}

.ViDsocial-settings-page button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.ViDsocial-settings-page .settings-alert,
.ViDsocial-settings-page .membership-status-alert {
  padding: 12px 14px;
  border-radius: var(--vs-radius-sm);
  margin-bottom: 16px;
  background: #edf8ef;
  color: #176b2c;
}

.ViDsocial-settings-page .settings-alert.error,
.ViDsocial-settings-page .membership-status-alert.error {
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
}

.ViDsocial-settings-page .membership-status-page {
  padding: 0;
}

.ViDsocial-settings-page .membership-status-header {
  text-align: left;
  margin-bottom: 18px;
}

.ViDsocial-settings-page .membership-status-card,
.membership-status-page .membership-status-card {
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius);
  box-shadow: var(--vs-shadow);
  background: #fff;
  padding: 24px;
  margin-bottom: 22px;
}

.ViDsocial-settings-page .membership-status-topline,
.membership-status-page .membership-status-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.ViDsocial-settings-page .membership-status-badge,
.membership-status-page .membership-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 7px 13px;
  background: var(--vs-paper);
  color: var(--vs-purple-dark);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.ViDsocial-settings-page .membership-status-badge.success,
.membership-status-page .membership-status-badge.success {
  background: #edf8ef;
  color: #176b2c;
}

.ViDsocial-settings-page .membership-status-badge.warning,
.membership-status-page .membership-status-badge.warning {
  background: #fff6dd;
  color: #7a5100;
}

.ViDsocial-settings-page .membership-status-badge.error,
.membership-status-page .membership-status-badge.error {
  background: var(--vs-red-soft);
  color: var(--vs-red-dark);
}

.ViDsocial-settings-page .membership-status-details,
.membership-status-page .membership-status-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 0;
}

.ViDsocial-settings-page .membership-status-details div,
.membership-status-page .membership-status-details div {
  padding: 14px;
  border: 1px solid rgba(116, 51, 97, 0.12);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-settings-page .membership-status-details dt,
.membership-status-page .membership-status-details dt {
  margin-bottom: 4px;
  color: var(--vs-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

.ViDsocial-settings-page .membership-status-details dd,
.membership-status-page .membership-status-details dd {
  margin: 0;
  color: var(--vs-ink);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.ViDsocial-settings-page .membership-status-actions,
.membership-status-page .membership-status-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ViDsocial-settings-page .membership-renew-form,
.membership-status-page .membership-renew-form {
  margin-top: 20px;
}

.ViDsocial-settings-page .membership-renew-toggle,
.membership-status-page .membership-renew-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--vs-purple-dark);
  font-weight: 900;
}

.ViDsocial-settings-page .membership-renew-toggle input,
.membership-status-page .membership-renew-toggle input {
  width: 20px;
  height: 20px;
  accent-color: var(--vs-purple);
}

.ViDsocial-settings-page .membership-card-field,
.membership-status-page .membership-card-field {
  margin-bottom: 18px;
}

.ViDsocial-settings-page .membership-card-field label,
.membership-status-page .membership-card-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--vs-purple-dark);
  font-weight: 900;
}

.ViDsocial-settings-page #membership-card-element,
.membership-status-page #membership-card-element {
  min-height: 48px;
  padding: 14px;
  border: 1px solid rgba(116, 51, 97, 0.24);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-settings-page .hidden,
.membership-status-page .hidden {
  display: none;
}

@media (max-width: 760px) {
  .ViDsocial-settings-page .settings-shell-block,
  .ViDsocial-settings-page .settings-section,
  .ViDsocial-settings-page .settings-card,
  .ViDsocial-settings-page .membership-status-app,
  .ViDsocial-settings-page .settings-subnav,
  .ViDsocial-settings-page .ViDsocial-profile-subNavagation.settings-subnav {
    width: calc(100% - 20px);
  }

  .ViDsocial-settings-page .settings-subnav {
    margin-top: 16px;
    margin-bottom: 16px;
    padding: 10px;
    gap: 8px;
  }

  .ViDsocial-settings-page .settings-subnav .tabToggle {
    flex: 1 1 calc(50% - 8px);
    font-size: 14px;
    text-align: center;
  }

  .ViDsocial-settings-page .settings-card {
    padding: 18px;
  }

  .ViDsocial-settings-page .membership-status-card,
  .membership-status-page .membership-status-card {
    padding: 18px;
  }

  .ViDsocial-settings-page .membership-status-topline,
  .membership-status-page .membership-status-topline {
    display: block;
  }

  .ViDsocial-settings-page .membership-status-badge,
  .membership-status-page .membership-status-badge {
    margin-top: 12px;
  }

  .ViDsocial-settings-page .membership-status-details,
  .membership-status-page .membership-status-details {
    grid-template-columns: 1fr;
  }

  .ViDsocial-settings-page .settings-toggle-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Shared rich-text editor */
.rt-wrap {
  width: 100%;
  margin: 10px auto;
  font: 14px/1.45 var(--vs-font-body);
}

.rt-label {
  display: block;
  margin: 0 0 12px;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.rt-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.rt-toolbar button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid var(--vs-purple-dark);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  cursor: pointer;
  font: 900 0.78rem/1 var(--vs-font-ui);
  text-transform: uppercase;
}

.rt-toolbar button:hover,
.rt-toolbar button:focus {
  background: var(--vs-purple-dark);
  color: #fff;
  outline: none;
}

.rt-editor {
  min-height: 180px;
  padding: 12px;
  overflow: auto;
  border: 1px solid rgba(116, 51, 97, 0.22);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  outline: none;
  white-space: pre-wrap;
}

.rt-editor:focus {
  border-color: var(--vs-teal);
  box-shadow: 0 0 0 3px rgba(8, 170, 167, 0.18);
}

.rt-editor:empty:before {
  content: attr(data-placeholder);
  color: var(--vs-text-muted);
}

.rt-editor p {
  margin: 0 0 8px;
}

.rt-editor ul,
.rt-editor ol {
  margin: 0 0 8px 20px;
}

.rt-editor code {
  padding: 0 4px;
  border-radius: 4px;
  background: var(--vs-brown-soft);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.rt-editor a {
  color: var(--vs-teal-dark);
  font-weight: 900;
  text-decoration: underline;
}

textarea[hidden] {
  display: none !important;
}

.rt-help {
  margin-top: 8px;
  color: var(--vs-text-muted);
  font-size: 0.86rem;
}

/* Marketplace view */
.ViDsocial-market-view {
  width: min(100% - 32px, var(--vs-width));
  margin: 0 auto;
  color: var(--vs-ink);
}

.ViDsocial-market-view .vmp-layout {
  display: grid;
  gap: 18px;
  align-items: start;
}

.ViDsocial-market-view .tab-view.tab-01-view {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ViDsocial-market-view .vmp-main {
  display: grid;
  gap: 16px;
}

.ViDsocial-market-view .vmp-tabs {
  margin: 0;
}

.ViDsocial-market-view .sotf-panel,
.ViDsocial-market-view .mp-section {
  border: 1px solid rgba(116, 51, 97, 0.16);
  border-radius: var(--vs-radius);
  background: #fff;
  box-shadow: var(--vs-shadow);
  overflow: hidden;
   margin-top: 15px !important;
}

.ViDsocial-market-view .mp-section {
  display: grid;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  background: #fff;
}

.ViDsocial-market-view .mp-title {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.ViDsocial-market-view .mp-row,
.ViDsocial-market-view .vmp-filter-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.ViDsocial-market-view .mp-col-100,
.ViDsocial-market-view .vmp-filter-grid {
  grid-column: 1 / -1;
}

.ViDsocial-market-view .mp-label,
.ViDsocial-market-view .ViDsocial-field > span {
  display: block;
  margin-bottom: 6px;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-ui);
  font-weight: 900;
}

.ViDsocial-market-view .mp-input,
.ViDsocial-market-view .mp-select,
.ViDsocial-market-view .ViDsocial-input,
.ViDsocial-market-view .ViDsocial-select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(116, 51, 97, 0.22);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  color: var(--vs-ink);
  font: 400 1rem/1.35 var(--vs-font-body);
}

.ViDsocial-market-view .mp-input:focus,
.ViDsocial-market-view .mp-select:focus,
.ViDsocial-market-view .ViDsocial-input:focus,
.ViDsocial-market-view .ViDsocial-select:focus,
.ViDsocial-market-view .rt-editor:focus,
.ViDsocial-market-view #mp-card-element:focus-within {
  border-color: var(--vs-teal);
  box-shadow: 0 0 0 3px rgba(8, 170, 167, 0.18);
  outline: none;
}

.ViDsocial-market-view .vmp-search-primary {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
}

.ViDsocial-market-view .vmp-search-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.ViDsocial-market-view .adsAdvOptTab {
  margin-top: 16px;
}

.ViDsocial-market-view .ViDsocial-icon-btn.adsAdvOptTab_toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--vs-purple-dark);
}

.ViDsocial-market-view .vmp-results-header {
  align-items: center;
}

.ViDsocial-market-view .vmp-results-list {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr 1fr;
}

section.sotf-panel.mp_header {
    margin-bottom: 15px;
}

.ViDsocial-market-view .tab-view.tab-01-view {
    display: flex;
    gap: 15px;
}
 
.ViDsocial-market-view .vmp-pagination {
  justify-content: flex-end;
}

.ViDsocial-market-view .vmp-pagination .ViDsocial-btn {
  min-height: 34px;
  padding: 0 13px;
  font-size: 0.9rem;
}

.ViDsocial-market-view .mp-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius);
  background: #fff;
}

.ViDsocial-market-view .mp-card-image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--vs-radius-sm);
  background: var(--vs-brown-soft);
}

.ViDsocial-market-view .mp-card-image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ViDsocial-market-view .mp-card-image-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  min-height: 134px;
  color: var(--vs-purple-dark);
  font-weight: 900;
  background: var(--vs-soft-purple);
}

.ViDsocial-market-view .mp-card-body {
  display: grid;
  gap: 8px;
  align-content: start;
}

.ViDsocial-market-view .mp-card-title {
  margin: 0;
  font-family: var(--vs-font-display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.ViDsocial-market-view .mp-card-title a {
  color: var(--vs-purple-dark);
  text-decoration: none;
}

.ViDsocial-market-view .mp-card-title a:hover,
.ViDsocial-market-view .mp-card-title a:focus,
.ViDsocial-market-view .mp-card-desc a:hover,
.ViDsocial-market-view .mp-card-desc a:focus {
  color: var(--vs-teal-dark);
  text-decoration: underline;
}

.ViDsocial-market-view .mp-card-meta,
.ViDsocial-market-view .mp-card-desc {
  color: var(--vs-text-muted);
}

.ViDsocial-market-view .mp-card-desc a {
  color: var(--vs-teal-dark);
  font-weight: 900;
}

.ViDsocial-market-view .vidsocial-image-uploader {
  display: grid;
  gap: 14px;
}

.ViDsocial-market-view .vidsocial-image-uploader .dropzone {
  display: grid;
  gap: 6px;
  place-items: center;
  min-height: 150px;
  padding: 22px;
  border: 2px dashed rgba(116, 51, 97, 0.26);
  border-radius: var(--vs-radius);
  background: var(--vs-paper);
  color: var(--vs-purple-dark);
  text-align: center;
  cursor: pointer;
}

.ViDsocial-market-view .vidsocial-image-uploader .dropzone.drag,
.ViDsocial-market-view .vidsocial-image-uploader .dropzone:focus {
  border-color: var(--vs-teal);
  background: rgba(8, 170, 167, 0.08);
  outline: none;
}

.ViDsocial-market-view .vmp-upload-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: var(--vs-teal);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 900;
  line-height: 1;
}

.ViDsocial-market-view .vidsocial-image-uploader .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ViDsocial-market-view .vidsocial-image-uploader .gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ViDsocial-market-view .vidsocial-image-uploader .item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-market-view .vidsocial-image-uploader .item img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ViDsocial-market-view .vidsocial-image-uploader .bar {
  position: absolute;
  right: 8px;
  bottom: 8px;
  display: flex;
  gap: 6px;
}

.ViDsocial-market-view .vidsocial-image-uploader .bar button {
  border: 1px solid var(--vs-red-dark);
  border-radius: 999px;
  background: var(--vs-red);
  color: #fff;
  padding: 6px 10px;
  cursor: pointer;
  font-weight: 900;
}

.ViDsocial-market-view #mp-card-element {
  padding: 12px;
  border: 1px solid rgba(116, 51, 97, 0.22);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-market-view #card-errors {
  display: none;
  margin-top: 8px;
  color: var(--vs-red-dark);
  font-weight: 800;
}

.ViDsocial-market-view .conformation {
  display: none;
  text-align: center;
}

.ViDsocial-market-view .mp-detail-wrap {
  margin: 0 auto;
}

.ViDsocial-market-view .top-area {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}

.ViDsocial-market-view .mp-gallery,
.ViDsocial-market-view .mp-info {
  width: 100%;
}

.ViDsocial-market-view .mp-main-slider img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--vs-radius);
}

.ViDsocial-market-view .mp-thumb-slider {
  margin-top: 10px;
}

.ViDsocial-market-view .mp-thumb-slider img {
  width: 100%;
  height: 86px;
  object-fit: cover;
  border: 2px solid transparent;
  border-radius: var(--vs-radius-sm);
  cursor: pointer;
}

.ViDsocial-market-view .mp-thumb-slider .slick-current img {
  border-color: var(--vs-teal);
}

.ViDsocial-market-view .mp-info,
.ViDsocial-market-view .mp-detail-description {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius);
  background: #fff;
}

.ViDsocial-market-view .mp-info h3,
.ViDsocial-market-view .mp-detail-description h3 {
  margin: 0;
  color: var(--vs-purple-dark);
  font-family: var(--vs-font-display);
}

.ViDsocial-market-view .mp-contact {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 8px;
  align-items: baseline;
}

.ViDsocial-market-view .mp-contact strong {
  color: var(--vs-purple-dark);
}

.ViDsocial-market-view .mp-contact a {
  color: var(--vs-teal-dark);
  font-weight: 900;
}

.ViDsocial-market-view .mp-detail-description {
  margin: 18px;
}

/* Edit ticket */
.ViDsocial-edit-ticket-view {
  display: grid;
  gap: 18px;
  width: min(100% - 32px, var(--vs-width));
  margin: 0 auto 48px;
}

.ViDsocial-edit-ticket-view #eventDetail_container:empty,
.ViDsocial-edit-ticket-view .option-container:empty {
  display: none;
}

.ViDsocial-edit-ticket-view .vet-event-summary .sotf-panel-title {
  font-family: inherit;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.ViDsocial-edit-ticket-view .event-date {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ViDsocial-edit-ticket-view .vet-date-chip,
.ViDsocial-edit-ticket-view .vet-total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-edit-ticket-view .vet-date-chip small,
.ViDsocial-edit-ticket-view .sotf-ticket-card small,
.ViDsocial-edit-ticket-view .sotf-ticket-price small,
.ViDsocial-edit-ticket-view .sotf-ticket-total small {
  color: var(--vs-purple-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ViDsocial-edit-ticket-view .vet-date-chip {
  flex-direction: column;
}

.ViDsocial-edit-ticket-view .vet-date-chip.cancelled:empty {
  display: none;
}

.ViDsocial-edit-ticket-view .sotf-ticket-card {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) 120px 120px 120px;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--vs-line);
}

.ViDsocial-edit-ticket-view .sotf-ticket-card:first-child {
  padding-top: 0;
}

.ViDsocial-edit-ticket-view .sotf-ticket-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.ViDsocial-edit-ticket-view .sotf-ticket-card h4 {
  margin: 0 0 4px;
  color: var(--vs-purple-dark);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.ViDsocial-edit-ticket-view .sotf-ticket-qty,
.ViDsocial-edit-ticket-view .sotf-ticket-price,
.ViDsocial-edit-ticket-view .sotf-ticket-total {
  display: grid;
  gap: 6px;
}

.ViDsocial-edit-ticket-view .option_qty {
  text-align: center;
}

.ViDsocial-edit-ticket-view .sotf-ticket-price strong,
.ViDsocial-edit-ticket-view .sotf-ticket-total strong,
.ViDsocial-edit-ticket-view .vet-total-row span {
  color: var(--vs-purple-dark);
  font-size: 18px;
  font-weight: 900;
}

.ViDsocial-edit-ticket-view .cartTotal {
  margin-left: 0;
}

.ViDsocial-edit-ticket-view .vet-total-body {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ViDsocial-edit-ticket-view .vet-guest-field,
.ViDsocial-edit-ticket-view .sotf-button-row,
.ViDsocial-edit-ticket-view #pay-booking,
.ViDsocial-edit-ticket-view .conformation {
  grid-column: 1 / -1;
}

.ViDsocial-edit-ticket-view .vet-total-row.is-due {
  border-color: rgba(0, 175, 174, 0.35);
  background: rgba(0, 175, 174, 0.08);
}

.ViDsocial-edit-ticket-view .vet-total-row.is-due span {
  color: var(--vs-teal-dark);
  font-size: 22px;
}

.ViDsocial-edit-ticket-view .sotf-button-row {
  justify-content: flex-end;
}

.ViDsocial-edit-ticket-view #refund-booking,
.ViDsocial-edit-ticket-view #update-booking,
.ViDsocial-edit-ticket-view #pay-booking {
  margin: 0;
}

.ViDsocial-edit-ticket-view .social-btn,
.ViDsocial-edit-ticket-view .ViDsocial-btn.stripePay {
  width: auto;
  min-height: 42px;
  padding: 10px 16px;
}

.ViDsocial-edit-ticket-view .sotf-button.is-danger {
  border-color: var(--vs-red-dark);
  background: var(--vs-red-dark);
  color: #fff;
}

.ViDsocial-edit-ticket-view .sotf-button.is-teal {
  border-color: var(--vs-teal-dark);
  background: var(--vs-teal);
  color: #fff;
}

.ViDsocial-edit-ticket-view .paymentSection {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid rgba(116, 51, 97, 0.14);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

.ViDsocial-edit-ticket-view .stripeElement {
  padding: 13px 12px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
}

.ViDsocial-edit-ticket-view .stripe-error {
  display: none;
  color: var(--vs-red-dark);
  font-weight: 800;
}

.ViDsocial-edit-ticket-view .conformation {
  padding: 16px;
  border: 1px solid rgba(0, 175, 174, 0.35);
  border-radius: var(--vs-radius-sm);
  background: rgba(0, 175, 174, 0.08);
  color: var(--vs-purple-dark);
  text-align: center;
}

.ViDsocial-edit-ticket-view .conformationMessage {
  font-weight: 900;
}

.ViDsocial-edit-ticket-view .admin-debug-area {
  padding: 16px;
  border: 1px dashed var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: var(--vs-paper-light);
}

/* Host wait list */
.ViDsocial-wishlist-view {
  display: grid;
  gap: 18px;
  width: min(100% - 32px, var(--vs-width));
  margin: 0 auto 48px;
}

.ViDsocial-wishlist-view .vwl-hero .sotf-panel-header {
  align-items: center;
}

.ViDsocial-wishlist-view .vwl-booking-action {
  display: flex;
  justify-content: flex-end;
}

.ViDsocial-wishlist-view .sotf-table-wrap {
  overflow-x: auto;
}

.ViDsocial-wishlist-view .vwl-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.ViDsocial-wishlist-view .vwl-table th,
.ViDsocial-wishlist-view .vwl-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--vs-line);
  text-align: left;
  vertical-align: middle;
}

.ViDsocial-wishlist-view .vwl-table th {
  color: var(--vs-purple-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ViDsocial-wishlist-view .vwl-table tbody tr:last-child td {
  border-bottom: 0;
}

.ViDsocial-wishlist-view .vwl-table tbody tr:nth-child(odd) td {
  background: rgba(237, 218, 232, 0.24);
}

.ViDsocial-wishlist-view .waitlist-member-link {
  color: var(--vs-purple-dark);
  font-weight: 900;
  text-decoration: none;
}

.ViDsocial-wishlist-view .waitlist-member-link:hover,
.ViDsocial-wishlist-view .waitlist-member-link:focus {
  color: var(--vs-teal-dark);
  text-decoration: underline;
}

.ViDsocial-wishlist-view .waitlist-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(0, 175, 174, 0.28);
  border-radius: 999px;
  background: rgba(0, 175, 174, 0.08);
  color: var(--vs-teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.ViDsocial-wishlist-view .waitlist-status-active {
  border-color: rgba(0, 175, 174, 0.28);
  background: rgba(0, 175, 174, 0.08);
  color: var(--vs-teal-dark);
}

.ViDsocial-wishlist-view .waitlist-status-probation,
.ViDsocial-wishlist-view .waitlist-status-revoked,
.ViDsocial-wishlist-view .waitlist-status-2,
.ViDsocial-wishlist-view .waitlist-status-1 {
  border-color: rgba(143, 0, 20, 0.22);
  background: rgba(143, 0, 20, 0.08);
  color: var(--vs-red-dark);
}

.ViDsocial-wishlist-view .waitlist-status-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.ViDsocial-wishlist-view .waitlist-actions,
.ViDsocial-wishlist-view .waitlist-row-actions {
  white-space: nowrap;
}

.ViDsocial-wishlist-view .waitlist-action,
.ViDsocial-wishlist-view .revoke,
.ViDsocial-wishlist-view .openBooking,
.ViDsocial-wishlist-view .closeBooking,
.ViDsocial-wishlist-view .sendMessage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid var(--vs-purple-dark);
  border-radius: 999px;
  background: var(--vs-purple);
  color: #fff;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.ViDsocial-wishlist-view .waitlist-action.nameContact_full,
.ViDsocial-wishlist-view .closeBooking,
.ViDsocial-wishlist-view .sendMessage {
  border-color: var(--vs-teal-dark);
  background: var(--vs-teal);
}

.ViDsocial-wishlist-view .waitlist-action.waitlist_remove,
.ViDsocial-wishlist-view .revoke,
.ViDsocial-wishlist-view .openBooking {
  border-color: var(--vs-red-dark);
  background: #fff;
  color: var(--vs-red-dark);
}

.ViDsocial-wishlist-view .waitlist-action:hover,
.ViDsocial-wishlist-view .waitlist-action:focus,
.ViDsocial-wishlist-view .revoke:hover,
.ViDsocial-wishlist-view .revoke:focus,
.ViDsocial-wishlist-view .openBooking:hover,
.ViDsocial-wishlist-view .openBooking:focus,
.ViDsocial-wishlist-view .closeBooking:hover,
.ViDsocial-wishlist-view .closeBooking:focus,
.ViDsocial-wishlist-view .sendMessage:hover,
.ViDsocial-wishlist-view .sendMessage:focus {
  background: var(--vs-purple-dark);
  border-color: var(--vs-purple-dark);
  color: #fff;
  text-decoration: none;
}

.ViDsocial-wishlist-view .vwl-empty {
  padding: 20px 14px;
  color: var(--vs-muted);
  text-align: center;
}

.ViDsocial-wishlist-view .vwl-invite-panel .sotf-panel-body {
  display: grid;
  gap: 14px;
}

.ViDsocial-wishlist-view textarea.sotf-input {
  min-height: 130px;
  resize: vertical;
}

.ViDsocial-wishlist-view .vidsocial-required-alert {
  display: none;
  margin-bottom: 6px;
  color: var(--vs-red-dark);
  font-size: 13px;
  font-weight: 800;
}

.ViDsocial-wishlist-view .autoLoagContactList {
  position: relative;
  z-index: 2;
  margin-top: 6px;
  border: 1px solid var(--vs-line);
  border-radius: var(--vs-radius-sm);
  background: #fff;
  box-shadow: var(--vs-shadow-soft);
}

.ViDsocial-wishlist-view .autoLoagContactList:empty {
  display: none;
}

.ViDsocial-wishlist-view .autoLoagContactList .nameContact {
  padding: 10px 12px;
  color: var(--vs-purple-dark);
  font-weight: 800;
  cursor: pointer;
}

.ViDsocial-wishlist-view .autoLoagContactList .nameContact:hover {
  background: var(--vs-purple-soft);
}

@media (max-width: 1240px) {
  .ViDsocial-market-view .vmp-results-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {
  .ViDsocial-market-view .vmp-layout.has-member-rail,
  .ViDsocial-market-view .vmp-search-primary,
  .ViDsocial-market-view .top-area {
    grid-template-columns: 1fr;
  }

  .ViDsocial-market-view .vmp-search-actions,
  .ViDsocial-market-view .vmp-pagination {
    justify-content: flex-start;
  }
}

@media (max-width: 700px) {
  .ViDsocial-market-view {
    width: calc(100% - 20px);
  }

  .ViDsocial-market-view .mp-row,
  .ViDsocial-market-view .vmp-filter-grid,
  .ViDsocial-market-view .mp-card {
    grid-template-columns: 1fr;
  }

  .ViDsocial-market-view .vidsocial-image-uploader .gallery {
    grid-template-columns: 1fr;
  }

  .ViDsocial-market-view .sotf-panel-header,
  .ViDsocial-market-view .vmp-results-header {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .ViDsocial-edit-ticket-view {
    width: calc(100% - 20px);
  }

  .ViDsocial-wishlist-view {
    width: calc(100% - 20px);
  }

  .ViDsocial-edit-ticket-view .event-date,
  .ViDsocial-edit-ticket-view .sotf-ticket-card,
  .ViDsocial-edit-ticket-view .vet-total-body {
    grid-template-columns: 1fr;
  }

  .ViDsocial-edit-ticket-view .sotf-panel-header,
  .ViDsocial-edit-ticket-view .sotf-button-row,
  .ViDsocial-wishlist-view .vwl-hero .sotf-panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .ViDsocial-edit-ticket-view .social-btn,
  .ViDsocial-edit-ticket-view .ViDsocial-btn.stripePay,
  .ViDsocial-edit-ticket-view #refund-booking,
  .ViDsocial-edit-ticket-view #update-booking,
  .ViDsocial-edit-ticket-view #pay-booking {
    width: 100%;
  }

  .ViDsocial-wishlist-view .vwl-booking-action,
  .ViDsocial-wishlist-view .vwl-booking-action .sotf-button,
  .ViDsocial-wishlist-view .sendMessage {
    width: 100%;
  }
}
