:root {
  --attractive-navy: #393866;
  --silent-navy: #7371fc;
  --primary-purple: #6c5dd3;
  --primary-light: #a098e5;
  --text-dark: #1f1f39;
  --text-light: #6e798c;
  --bg-soft: #f9f9ff;
  --squircle-svg: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cpath d='M50,0 C10,0 0,10 0,50 C0,90 10,100 50,100 C90,100 100,90 100,50 C100,10 90,0 50,0 Z' fill='black'/%3e%3c/svg%3e");
  --auth-card-mask: url("/assets/img/squircle-mask.svg");
  --auth-shell-bg:
    radial-gradient(circle at 10% 20%, rgba(255, 154, 158, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255, 207, 239, 0.4) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(115, 113, 252, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(161, 140, 209, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
}

@font-face {
  font-family: "SF Pro Display";
  src: url("/assets/fonts/SF-Pro/SFPRODISPLAYREGULAR.OTF") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
  margin: 0;
}

body {
  font-family: "SF Pro Display", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
  background-color: #fff;
}

#app {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Light $tack FRAMEWORK start */
.spa-component-placeholder {
  display: none;
}

/* 1. The Base State */
.is-loading {
  position: relative !important;
  pointer-events: none; /* Disable clicks */
  overflow: hidden; /* Keep the pulse inside the box */
}

/* 2. The Pulse Overlay */
.is-loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.05); /* Very light tint */
  z-index: 10;
  animation: storagePulse 1.5s ease-in-out infinite;
}

.pretty-scroll::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

.pretty-scroll::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.pretty-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: 10px;
}

.pretty-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--attractive-navy);
}

/* 3. The Animation Logic */
@keyframes storagePulse {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.8;
    background-color: rgba(200, 200, 200, 0.2);
  }
  100% {
    opacity: 0.2;
  }
}
/* Light $tack FRAMEWORK end */

/* jp */
.sidebar-collapsed .sidebar .sidebar-scrollable {
  margin-left: -20px;
  padding: 0 12px;
}

.sidebar-collapsed .sidebar #sidebar_userProfile {
  margin-left: -20px;
  width: inherit;
}

.sidebar-collapsed .sidebar #sidebar_userProfile *:not(.user-avatar) {
  display: none;
}
#sidebar_userProfile {
  cursor: pointer;
}
#sidebar_userProfile[data-bs-toggle="dropdown"] i.fa-chevron-down {
  transition: transform 0.1s ease;
}
#sidebar_userProfile[data-bs-toggle="dropdown"].show i.fa-chevron-down {
  transform: rotate(180deg);
}

.dropdown-item {
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  gap: 12px;
  align-items: center;
}

/* css ni nikol */
* {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

img {
  user-select: none;
}

/* Disable the default eye icon in Edge/Internet Explorer */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

.form-check:hover {
  cursor: pointer !important;
}

.btn-custom-primary {
  background-color: var(--silent-navy);
  color: white;
  border-radius: 0.7rem;
  padding: 10px 30px;
  font-weight: 500;
  border: none;
  transition: all 0.3s ease;
}

.btn-custom-primary:hover {
  background-color: #5a4cb4;
  transform: translateY(-2px);
  color: white;
}

.btn-custom-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 1px solid #eaeaea;
  border-radius: 0.7rem;
  padding: 8px 25px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-custom-outline:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
}

.navbar {
  background: white;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 500;
  color: var(--primary-purple) !important;
  font-size: 1.5rem;
}

.squircle {
  /* Standard property (Firefox) */
  mask-border-source: var(--squircle-svg);
  mask-border-slice: 48% fill; /* Slices the image near the middle so corners stay intact */
  mask-border-width: 30px; /* Determines the size of the corner radius */
  mask-border-repeat: stretch; /* Stretches the edge segments to fit the container */

  /* Webkit prefix (Chrome, Safari, Edge) */
  -webkit-mask-box-image-source: var(--squircle-svg);
  -webkit-mask-box-image-slice: 48% fill;
  -webkit-mask-box-image-width: 30px; /* Adjust this px value to change radius size! */
  -webkit-mask-box-image-repeat: stretch;

  border-radius: 0 !important; /* Disable standard radius */
  overflow: hidden; /* Ensures content clips to the new shape */
}

.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
  height: 855px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(245, 239, 255, 0.7) 56.2%, rgba(225, 186, 255, 0.7) 100%),
    url(/assets/img/abstract-bg-vectorized.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-illustration {
  height: 60%;
  z-index: 1;
  max-width: 450px;
  margin: 0 auto 30px;
}

.hero-content {
  height: 40%;
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-main-graphic {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  height: 361px;
  width: 100%;
  max-width: 450px;
  animation: easing-grow-and-shrink 10s ease-in-out infinite;
}

@keyframes easing-grow-and-shrink {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.rotating-circle-dots-md {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  width: 431px;
  height: 431px;
  animation: spinning-clockwise 60s linear infinite;
}

@keyframes spinning-clockwise {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.rotating-circle-dots-lg {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  width: 863px;
  height: 863px;
  animation: spinning-counterclockwise 60s linear infinite;
}

@keyframes spinning-counterclockwise {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

.circle-wave-sm {
  position: absolute;
  width: 520px;
  height: 520px;
  left: 50%;
  top: 32%;
  border-radius: 100%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background: radial-gradient(64.7% 64.7% at 50% 50%, rgba(209, 208, 255, 0) 0%, #807eff 100%);
  animation: growing-then-fading 5s linear infinite;
}

@keyframes growing-then-fading {
  0% {
    transform: translate(-50%, -50%) scale(0.2);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.hero-subtitle {
  position: relative;
  z-index: 2;
  color: var(--silent-navy);
  font-weight: 500;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 30px;
}

.hero-title {
  z-index: 4;
  position: relative;
  font-family: "SF Pro Display";
  font-style: normal;
  font-weight: 500;
  font-size: 96px;
  color: var(--primary-purple);
  margin-bottom: 15px;
  line-height: 1;
}

.purple-text-accent {
  background: linear-gradient(180deg, #c4c3ff 0%, #7371fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.hero-title span {
  color: var(--text-dark);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.hero-desc {
  color: var(--attractive-navy);
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  line-height: 1rem;
}

.features-section {
  padding: 80px 0;
  background-color: #fff;
}

.features-section .col-lg-4 {
  margin-top: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-weight: 500;
  font-size: 2.5rem;
  margin-bottom: 0;
}

.section-header p {
  color: var(--primary-light);
  font-weight: 500;
  font-size: 2rem;
}

.feature-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.3s ease;
  margin-bottom: 1rem;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.feature-card:hover {
  transform: translateY(-10px);
}

/* Gradients for cards */
.bg-card-1 {
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}
.bg-card-2 {
  background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%);
}
.bg-card-3 {
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}
.bg-card-4 {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}
.bg-card-5 {
  background: linear-gradient(135deg, #fccb90 0%, #d57eeb 100%);
}
.bg-card-6 {
  background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.feature-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  backdrop-filter: blur(0.5rem);
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 2px solid white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.feature-badge img.badge-icon {
  object-fit: contain;
  object-position: center;
  width: 20px;
}

.feature-icon-lg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  font-size: 6rem;
  opacity: 0.2;
  color: white;
}

.card-graphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.feature-content {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  height: 50%;
  background: linear-gradient(180deg, rgba(238, 238, 255, 0) 0%, #7371fc 100%);
  position: relative;
  z-index: 1;
  padding: 25px;
}

.feature-content p {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-weight: 500;
}

.cta-section {
  position: relative;
  padding: 100px 0;
  background:
    radial-gradient(ellipse at bottom left, #ff9a9e 0%, transparent 50%),
    radial-gradient(ellipse at top right, #a18cd1 0%, transparent 50%),
    linear-gradient(to right, #fdfbfb 0%, #ebedee 100%);
  overflow: hidden;
}

.wave-shape {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(245, 239, 255, 0.7) 56.2%, rgba(225, 186, 255, 0.7) 100%),
    url(/assets/img/abstract-bg-vectorized.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  z-index: 0;
  pointer-events: none;
}

.cta-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
  border: 2px solid rgba(255, 255, 255, 1);
}

.cta-card h3 {
  font-weight: 500;
  font-size: 2rem;
}

.cta-card p {
  color: var(--text-dark);
  margin-bottom: 30px;
}

.footer {
  background-color: #f8f7ff;
  padding: 70px 0 30px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.footer h5 {
  color: var(--primary-purple);
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer ul li a:hover {
  color: var(--primary-purple);
}

.social-icons a {
  color: var(--primary-purple);
  margin-right: 15px;
  font-size: 1.2rem;
}

.newsletter-form {
  position: relative;
}

.newsletter-input {
  width: 100%;
  padding: 10px 15px;
  border-radius: 5px;
  border: 1px solid #ddd;
  background: #ebebf5;
  margin-bottom: 10px;
}

.btn-subscribe {
  width: 100%;
  background-color: var(--primary-purple);
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px;
  font-weight: 500;
}

.footer-bottom {
  margin-top: 50px;
  border-top: 1px solid #eee;
  padding-top: 20px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* AUTH PAGES ////////////////////////////////////////////////////// */

.login-wrapper,
.register-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: var(--auth-shell-bg);
  background-size: cover;
}

.blob {
  position: absolute;
  z-index: 0;
  filter: blur(40px);
  opacity: 0.6;
  border-radius: 50%;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: #ff9a9e;
  top: -100px;
  left: -100px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: #7371fc;
  bottom: -150px;
  right: -100px;
}

.blob-3 {
  width: 300px;
  height: 300px;
  background: #a098e5;
  top: 20%;
  right: -50px;
}

.login-container,
.register-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.login-container {
  padding: 20px;
}

.register-container {
  padding: 40px 20px;
}

.login-card,
.register-card {
  background: #ffffff;
  width: 100%;
  max-width: 560px;
  padding: 45px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  -webkit-mask-box-image-source: var(--auth-card-mask);
  -webkit-mask-box-image-slice: 48% fill;
  -webkit-mask-box-image-width: 40px;
  -webkit-mask-box-image-repeat: stretch;
  text-align: center;
}

.login-logo,
.register-logo {
  font-family: "SF Pro Display";
  font-size: 2rem;
  font-weight: 500;
  color: var(--primary-purple);
  margin-bottom: 10px;
  display: block;
  text-decoration: none;
}

.login-title,
.register-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.login-subtitle,
.register-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 30px;
}

.form-control-custom {
  background-color: #f5f5ff;
  border: none;
  border-radius: 0.6rem;
  padding: 12px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-control-custom:focus {
  background-color: #ededff;
  box-shadow: 0 0 0 2px rgba(115, 113, 252, 0.2);
  outline: none;
}

.btn-login,
.btn-register {
  width: 100%;
  margin-top: 10px;
  background-color: var(--silent-navy);
  padding: 12px;
  border-radius: 0.6rem;
}

.btn-login {
  font-weight: 400;
}

.btn-register {
  font-weight: 500;
}

.divider {
  margin: 25px 0;
  height: 1px;
  background: #eee;
  position: relative;
}

.btn-google {
  width: 100%;
  background: white;
  border: 1px solid #eaeaea;
  color: var(--text-dark);
  padding: 12px;
  font-weight: 500;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-google:hover {
  background-color: #f9f9f9;
  border-color: #ccc;
}

.signup-link {
  margin-top: 25px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.signup-link a {
  color: var(--text-dark);
  font-weight: 400;
  text-decoration: none;
}

.register-wrapper .signup-link a {
  font-weight: 500;
}

.signup-link a:hover {
  color: var(--primary-purple);
}

.login-footer,
.register-footer {
  padding: 20px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(5px);
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.login-footer-links a,
.register-footer-links a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 15px;
}

@media (max-width: 576px) {
  .login-card,
  .register-card {
    padding: 30px 20px;
    -webkit-mask-box-image-width: 25px;
  }

  .login-footer,
  .register-footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .login-footer-links a,
  .register-footer-links a {
    margin: 0 10px;
  }
}

/* //////////////////////////////////////////////////////////// */

/* DASHBOARD ////////////////////////////////////////////////////// */

body {
  background-color: var(--bg-soft);
  font-weight: 400;
}

/* Dashboard Layout */
.wrapper {
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  transition: all 0.3s ease;
}

/* Sidebar Styling */
.sidebar {
  width: 280px;
  background: white;
  padding: 30px 20px 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  z-index: 100;
  transition: all 0.3s ease;
}

.sidebar .sidebar-scrollable {
  overflow-y: auto;
  flex: 1;
  width: inherit;
  margin-left: -20px;
  padding: 0 20px;
}

/* Collapsed Sidebar State */
.sidebar-collapsed .sidebar {
  width: 70px;
}

.sidebar-brand,
.sidebar-brand-collapsed {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-purple);
  text-decoration: none;
  margin-bottom: 30px;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.sidebar-brand {
  display: block;
}

.sidebar-brand-collapsed {
  display: none;
  text-align: center;
}

.sidebar-collapsed .sidebar-brand {
  display: none;
}
.sidebar-collapsed .sidebar-brand-collapsed {
  display: block;
}

.points-widget {
  background: #fff9e6;
  border-radius: 12px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 48px;
}

.sidebar-collapsed .points-widget {
  padding: 12px 0;
  justify-content: center;
  background: transparent;
}

.points-text {
  color: #ffb800;
  font-weight: 500;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.sidebar-collapsed .points-text span {
  display: none;
}

.sidebar-collapsed .points-add-btn {
  display: none;
}

.points-add-btn {
  background: #ffb800;
  color: white;
  border: none;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.nav-menu {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.nav-item-sidebar {
  margin-bottom: 8px;
  height: 48px;
}

.nav-link-sidebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: var(--text-light);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
  height: 100%;
}

.nav-link-sidebar:hover {
  background: #f4f4ff;
}

.sidebar-collapsed .nav-link-sidebar {
  padding: 12px 0;
  justify-content: center;
}

.sidebar-collapsed .nav-link-sidebar span {
  display: none;
}

.nav-link-sidebar.active {
  background: var(--primary-purple);
  color: white;
  -webkit-mask-box-image-source: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cpath d='M50,0 C10,0 0,10 0,50 C0,90 10,100 50,100 C90,100 100,90 100,50 C100,10 90,0 50,0 Z' fill='black'/%3e%3c/svg%3e");
  -webkit-mask-box-image-slice: 48% fill;
  -webkit-mask-box-image-width: 15px;
  -webkit-mask-box-image-repeat: stretch;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #c0c0cf;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding-left: 20px;
  white-space: nowrap;
}

.sidebar-collapsed .section-label {
  height: 32px;
  visibility: hidden;
  width: 0;
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 0;
}

.sidebar-collapsed .section-label::after {
  visibility: visible;
  content: "";
  position: absolute;
  text-align: center;
  width: 100% !important;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
}

.active-events-container {
  height: 100%;
  padding-bottom: 2rem;
}

.active-event-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 1rem 0.5rem;
  background: #f4f4ff;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dark);
  text-decoration: none;
  white-space: nowrap;
  height: 40px;
}

.active-event-item span {
  overflow: hidden;
  text-overflow: ellipsis;
}

.sidebar-collapsed .active-event-item {
  padding: 10px 0;
  justify-content: center;
  background: transparent;
}

.sidebar-collapsed .active-event-item span {
  display: none;
}

.event-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #a098e5;
  flex-shrink: 0;
}

.user-profile-sidebar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  overflow: hidden;
}

.sidebar-collapsed .user-profile-sidebar {
  justify-content: center;
}

.sidebar-collapsed .user-profile-sidebar .user-info,
.sidebar-collapsed .user-profile-sidebar .fa-chevron-down {
  display: none;
}

.user-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eee;
  flex-shrink: 0;
}

/* Main Content Styling */
.main-content {
  flex: 1;
  padding: 30px;
  overflow-y: auto;
  transition: all 0.3s ease;
}

/* Sidebar Toggle Button */
.sidebar-toggle-btn {
  position: absolute;
  right: -2.5rem;
  top: 4rem;
  width: 32px;
  height: 32px;
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 110;
  color: var(--primary-purple);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.sidebar-collapsed .sidebar-toggle-btn {
  /* Adjust position slightly if needed when collapsed */
}

/* Banner styling */
.dashboard-banner {
  padding: 1rem;
  height: 300px;
  border-radius: 24px;
  background: linear-gradient(135deg, #7371fc 0%, #a18cd1 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.banner-bg-blobs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 154, 158, 0.3) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(255, 207, 239, 0.3) 0%, transparent 40%);
}

.banner-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 20px;
  z-index: 1;
}

.search-container {
  width: 100%;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.search-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  padding: 15px 50px 15px 20px;
  color: white;
  font-weight: 400;
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.search-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
  max-width: 600px;
  z-index: 1;
}

.tag-item {
  background: white;
  color: var(--text-dark);
  padding: 5px 15px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

/* Stats Grid */
.stat-card {
  background: linear-gradient(135deg, #7371fc 0%, #a098e5 100%);
  border-radius: 20px;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  height: 120px;
  border: none;
  box-shadow: 0 10px 20px rgba(115, 113, 252, 0.15);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 140px;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-card-header {
  display: flex;
  justify-content: space-between;
  width: stretch;
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.8;
  margin-bottom: 5px;
}
.stat-value {
  font-size: 2.2rem;
  font-weight: 500;
}
.stat-icon {
  font-size: 1.5rem;
  opacity: 0.5;
}

/* Events Section */
.section-title {
  font-size: 1.1rem;
  font-weight: 500;
  margin: 30px 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-card-wrapper {
  cursor: pointer;
}

.create-event-card {
  border: 2px dashed #e0e0ff;
  background: transparent;
  width: 100%;
  min-height: 140px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.create-event-card:hover {
  background: white;
  border-color: var(--primary-purple);
}

#eventsSection .create-event-card {
  flex: 1;
}

.create-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-purple);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.event-card-container {
  position: relative;
  display: flex;
  gap: 1rem;
  width: 100%;
  height: 100%;
  margin-bottom: 20px;
  padding: 0 2.2rem;
}

.event-card-container::-webkit-scrollbar {
  height: 4px;
}

.event-card-container::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: 5px;
}

.event-card {
  background: white;
  border-radius: 20px;
  padding: 20px;
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
  width: 380px;
  margin: 10px;
  outline: none;
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .event-card-container {
    padding: 0;
  }
}

/* Slick Carousel Customizations */

#eventsSection .slick-dots li button {
  width: 20px;
  height: 20px;
}

#eventsSection .event-card-container.slick-slider .slick-list {
  overflow: hidden;
}

#eventsSection .event-card-container.slick-slider .slick-track {
  display: flex !important;
  height: 100%;
}

#eventsSection .event-card-container.slick-slider .slick-slide {
  height: auto !important;
  display: flex !important;
}

#eventsSection .event-card-container.slick-slider .slick-slide > div {
  display: flex;
  height: 100%;
}

#eventsSection .event-card-container.slick-slider .slick-prev,
#eventsSection .event-card-container.slick-slider .slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #ececff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#eventsSection .event-card-container.slick-slider .slick-prev {
  left: -15px;
}

#eventsSection .event-card-container.slick-slider .slick-next {
  right: -15px;
}

#eventsSection .event-card-container.slick-slider .slick-prev:before,
#eventsSection .event-card-container.slick-slider .slick-next:before {
  color: var(--primary-purple);
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 1;
}

#eventsSection .event-card-container.slick-slider .slick-prev:before {
  content: "\f104" !important;
}

#eventsSection .event-card-container.slick-slider .slick-next:before {
  content: "\f105" !important;
}

#eventsSection .event-card-container.slick-slider .slick-prev:hover,
#eventsSection .event-card-container.slick-slider .slick-next:hover,
#eventsSection .event-card-container.slick-slider .slick-prev:focus,
#eventsSection .event-card-container.slick-slider .slick-next:focus {
  background: white;
}

#eventsSection .event-card-container.slick-slider .slick-prev.slick-disabled,
#eventsSection .event-card-container.slick-slider .slick-next.slick-disabled {
  opacity: 0.45;
}

#eventsSection .slick-dots li.slick-active button:before {
  color: var(--primary-purple);
}

.event-card .card-title {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.event-header {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.event-img-thumb {
  width: 45px;
  height: 45px;
  background: var(--silent-navy);
  border-radius: 10px;
}

.event-name {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
}
.event-date {
  font-size: 0.75rem;
  color: var(--text-light);
}
.badge-status {
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 5px;
}

.event-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: left;
}

.mini-stat-label {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-bottom: 4px;
}
.mini-stat-value {
  font-size: 1.1rem;
  font-weight: 500;
}
.text-confirmed {
  color: #27ae60;
}
.text-pending {
  color: #f2994a;
}
.text-declined {
  color: #eb5757;
}

/* Templates Section */
.template-card {
  background: #ebebf5;
  border-radius: 15px;
  height: 180px;
  width: 100%;
}

/* Mobile Sidebar handling */
@media (max-width: 991px) {
  .sidebar {
    position: fixed;
    transition: none;
  }
  .sidebar-collapsed .sidebar {
    width: 280px;
    transform: translateX(-100%);
  }
  .main-content {
    padding: 1rem;
  }

  #eventsSection .container-fluid {
    padding: 0;
  }
}

/* //////////////////////////////////////////////////////////// */

/* MODALS ////////////////////////////////////////////////////// */

/* Specific Styles for the Create Event Modal */
.modal-content-custom {
  border: none;
  border-radius: 30px;
  overflow: hidden;
  background: #fff;
}

.modal-header {
  color: #7371fc;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding: 2rem;
  border: 0;
  /* Local Squircle Mask */
  -webkit-mask-box-image-source: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cpath d='M50,0 C10,0 0,10 0,50 C0,90 10,100 50,100 C90,100 100,90 100,50 C100,10 90,0 50,0 Z' fill='black'/%3e%3c/svg%3e");
  -webkit-mask-box-image-slice: 48% fill;
  -webkit-mask-box-image-width: 40px;
  -webkit-mask-box-image-repeat: stretch;
}

.modal-header h2 {
  line-height: 100%;
}

.modal-header span.subtitle {
  color: #a1a1a1;
  line-height: 120%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.modal-body {
  padding: 2rem;
  width: 100%;
  height: 100%;
}

.modal-footer {
  border: 0;
  padding: 1rem 2rem;
}

.modal-header-purple {
  background-color: #7371fc;
  color: white;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 15px;
  /* Local Squircle Mask */
  -webkit-mask-box-image-source: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3e%3cpath d='M50,0 C10,0 0,10 0,50 C0,90 10,100 50,100 C90,100 100,90 100,50 C100,10 90,0 50,0 Z' fill='black'/%3e%3c/svg%3e");
  -webkit-mask-box-image-slice: 48% fill;
  -webkit-mask-box-image-width: 40px;
  -webkit-mask-box-image-repeat: stretch;
}

.modal-header-purple h2 {
  font-weight: 500;
  font-size: 2.2rem;
  margin: 0;
}

/* Stepper Styling */
.stepper-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.stepper-line {
  position: absolute;
  top: 50%;
  left: 80px;
  right: 80px;
  width: auto;
  height: 12px;
  background: #ebebf5;
  z-index: 1;
  transform: translateY(-50%);
}

.stepper-progress {
  max-width: stretch;
  position: absolute;
  top: 50%;
  left: 80px;
  right: 80px;
  width: 0%;
  height: 10px;
  background: #7371fc;
  z-index: 2;
  transform: translateY(-50%);
  transition: width 0.3s ease;
}

.step-item {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ebebf5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  font-weight: 500;
  color: #6e798c;
  transition: all 0.3s ease;
}

.step-item.active {
  background: #7371fc;
  color: white;
  box-shadow: 0 0 0 5px rgba(115, 113, 252, 0.2);
}

.step-item.completed {
  background: #7371fc;
  color: white;
}

/* Step Content View */
.step-view {
  display: none;
  text-align: center;
}

.step-view.active {
  display: block;
}

.step-title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 1.2rem;
}

.step-desc {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 25px;
}

@media (min-width: 576px) {
  .step-view {
    padding: 10px 40px 30px;
  }
}

/* Step 1 Specifics */
.upload-area {
  background: #f8f8ff;
  border: 1px solid #eaeaea;
  border-radius: 20px;
  aspect-ratio: 16/9;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.avatar-circle {
  width: 90px;
  height: 90px;
  background: #f0f0ff;
  border-radius: 50%;
  border: 4px solid white;
  position: absolute;
  bottom: -45px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-upload {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 6px 15px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Step 2 Specifics */
.guest-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f8f8f8;
  text-align: left;
}

/* Step 3 Specifics */
.invite-info-box {
  background: #f0f7ff;
  color: #4a90e2;
  border-radius: 15px;
  padding: 20px;
  font-size: 0.85rem;
  text-align: left;
  margin-bottom: 20px;
}

.link-card {
  background: #f8f8ff;
  border-radius: 12px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
  text-align: left;
}

/* Step 4 Specifics */
.preview-event-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  max-width: 400px;
  margin: 0 auto;
}

.preview-img {
  height: 140px;
  background: #f5f5f5;
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Footer Nav */
.modal-footer-custom {
  padding: 0 40px 40px;
  display: flex;
  justify-content: space-between;
  border: none;
}

.btn-modal-nav {
  border-radius: 12px;
  padding: 10px 25px;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-secondary-custom {
  /* previously btn-back */
  background: #ebebf5;
  color: #6e798c;
}

.btn-secondary-custom:hover,
.btn-secondary-custom:active {
  background: #e4e4e4;
  color: #6e798c;
}

.btn-primary-custom {
  /* previously btn-next */
  background: #7371fc;
  color: white;
}

.btn-primary-custom:hover,
.btn-primary-custom:active {
  background: #5a69ce;
  color: white;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 720px;
  }
}

#frameworkModal.wallet-topup-shell .modal-dialog.wallet-topup-dialog {
  width: min(1380px, calc(100vw - 2rem));
  max-width: min(1380px, calc(100vw - 2rem));
  margin: 1rem auto;
}

#frameworkModal.wallet-topup-shell .modal-body {
  padding-inline: 2.25rem;
}

/* //////////////////////////////////////////////////////////// */

/* MANAGE EVENT ////////////////////////////////////////////////////// */

/* Manage Event Banner */
.event-hero {
  height: 320px;
  border-radius: 30px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 20%, #7371fc 100%);
}

.event-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
}

.event-hero-title {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 5px;
  z-index: 1;
}
.event-hero-info {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 20px;
  z-index: 1;
}

.btn-event-action {
  background: white;
  color: var(--text-dark);
  border: none;
  border-radius: 10px;
  padding: 8px 25px;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0 5px;
  z-index: 1;
  transition: all 0.3s ease;
}

.btn-event-action.outline {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
}

/* Stat Cards */
.manage-stat-card {
  background: white;
  border-radius: 20px;
  padding: 20px 25px;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  height: 100px;
}

.manage-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 2px;
}
.manage-stat-value {
  font-size: 2rem;
  font-weight: 500;
}

.stat-circle-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8ff;
  color: #eee;
  font-size: 1.2rem;
}

/* Modules */
.module-card {
  background: white;
  border-radius: 20px;
  padding: 1rem;
  text-align: center;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  height: 100%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.module-card:hover {
  transform: translateY(-5px);
}

.module-img {
  height: 100px;
  background: #f4f4ff;
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.module-title {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.module-desc {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

.create-module-card {
  border: 2px dashed #e0e0ff;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  height: 100%;
  min-height: 180px;
}

/* EVENT MODULES COMPONENT ////////////////////////////////////// */

#eventModulesCreateSlot {
  width: 100%;
}

#eventModulesCreateSlot .create-module-card {
  width: 100%;
  min-height: 230px;
  height: 100%;
}

.event-module-card-container {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  padding: 0 2.2rem;
}

.event-module-card-slide {
  height: 100%;
}

.event-module-card-slide .module-card {
  max-width: 360px;
  width: 100%;
  min-height: 230px;
}

.event-module-card-container:not(.slick-slider) {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  padding: 0;
}

.event-module-card-container.slick-slider .event-module-card-slide {
  display: flex;
  padding: 0 0.75rem;
}

.event-module-flag {
  border-radius: 999px;
  background: #f4f4ff;
  color: #7371fc;
  font-size: 0.7rem;
  font-weight: 400;
  padding: 0.35rem 0.7rem;
}

.event-module-icon-shell {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: #f4f4ff;
  color: #7371fc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.event-module-card-note {
  color: var(--text-light);
  font-size: 0.78rem;
  line-height: 1.4;
}

.event-module-shop-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.event-module-shop-card {
  border: 1px solid #ececf7;
  border-radius: 1.25rem;
  padding: 1rem;
  background: white;
}

.event-module-shop-price {
  font-size: 0.75rem;
  color: var(--text-light);
}

.event-module-card-container.slick-slider .slick-list {
  overflow: hidden;
  width: 100%;
}

.event-module-card-container.slick-slider .slick-track {
  display: flex !important;
  height: 100%;
}

.event-module-card-container.slick-slider .slick-slide {
  height: auto !important;
  display: flex !important;
}

.event-module-card-container.slick-slider .slick-slide > div {
  display: flex;
  height: 100%;
}

.event-module-card-container.slick-slider .slick-prev,
.event-module-card-container.slick-slider .slick-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: white;
  border: 1px solid #ececff;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-module-card-container.slick-slider .slick-prev {
  left: -15px;
}

.event-module-card-container.slick-slider .slick-next {
  right: -15px;
}

.event-module-card-container.slick-slider .slick-prev:before,
.event-module-card-container.slick-slider .slick-next:before {
  color: var(--primary-purple);
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
  font-size: 1.2rem;
  line-height: 1;
  opacity: 1;
}

.event-module-card-container.slick-slider .slick-prev:before {
  content: "\f104" !important;
}

.event-module-card-container.slick-slider .slick-next:before {
  content: "\f105" !important;
}

.event-module-card-container.slick-slider .slick-prev:hover,
.event-module-card-container.slick-slider .slick-next:hover,
.event-module-card-container.slick-slider .slick-prev:focus,
.event-module-card-container.slick-slider .slick-next:focus {
  background: white;
}

.event-module-card-container.slick-slider .slick-prev.slick-disabled,
.event-module-card-container.slick-slider .slick-next.slick-disabled {
  opacity: 0.45;
}

.event-module-card-container .slick-dots li button {
  width: 20px;
  height: 20px;
}

.event-module-card-container .slick-dots li.slick-active button:before {
  color: var(--primary-purple);
}

@media (max-width: 991px) {
  .event-module-card-container {
    padding: 0;
  }

  .event-module-card-container:not(.slick-slider) {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .event-module-card-slide {
    padding: 0 0.5rem;
  }
}

/* //////////////////////////////////////////////////////////// */

/* Guest Groups */
.group-container {
  background: white;
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.group-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.group-name {
  font-size: 1rem;
  font-weight: 500;
}
.group-count {
  font-size: 0.75rem;
  color: var(--text-light);
}

.guest-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guest-pill {
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f8f8ff;
  color: var(--text-dark);
  border: 1px solid #ebebf5;
}

.guest-pill.confirmed {
  background: #e8f5e9;
  color: #2e7d32;
  border-color: #c8e6c9;
}
.guest-pill.declined {
  background: #ffebee;
  color: #c62828;
  border-color: #ffcdd2;
}

.action-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.bg-qr {
  background: #f0f7ff;
  color: #4a90e2;
}
.bg-edit {
  background: #f4f4ff;
  color: #7371fc;
}
.bg-delete {
  background: #fff5f5;
  color: #eb5757;
}

@media (max-width: 991px) {
  /* .sidebar {
    display: none;
  } */
  .main-content {
    max-width: 100%;
  }
}

/* //////////////////////////////////////////////////////////// */

/* CHECK-IN KOSK ////////////////////////////////////////////// */

/*
this is overriding the default
body,
html {
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
} */

.kiosk-page-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  padding: 40px;
  display: flex;
  flex-direction: column;
  color: white; /* Header text remains white on dark bg */
  background: linear-gradient(135deg, #7371fc 0%, #393866 100%);
}

.back-link {
  color: white;
  text-decoration: none;
  font-size: 0.85rem;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.back-link:hover {
  opacity: 1;
  color: white;
}

.brand-name {
  font-size: 1.2rem;
  opacity: 0.7;
  margin-bottom: 5px;
}

.kiosk-main-branding .brand-name {
  font-weight: 400;
}

.booth-main-branding .brand-name {
  font-weight: 500;
}

.glass-panel {
  position: relative;
  background: #ffffff;
  color: var(--text-dark) !important;
  display: flex;
  flex-direction: column;
  -webkit-mask-box-image-source: var(--squircle-svg);
  -webkit-mask-box-image-slice: 48% fill;
  -webkit-mask-box-image-width: 40px;
  -webkit-mask-box-image-repeat: stretch;
}

.kiosk-page-wrapper .glass-panel {
  height: 500px;
  padding: 40px;
}

.booth-page-wrapper .glass-panel {
  padding: 30px;
}

/* Top Header Area */
.kiosk-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.kiosk-main-branding {
  text-align: center;
  margin-bottom: 40px;
}

.kiosk-page-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
}
.kiosk-subtitle {
  opacity: 0.8;
  font-size: 1rem;
}

/* Main Split Container */
.kiosk-grid {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 25px;
  flex: 1;
}

/* Panels */
/* Ensure all standard text elements inside panel are dark */
.glass-panel p,
.glass-panel h1,
.glass-panel h2,
.glass-panel h3,
.glass-panel span:not(.g-time) {
  color: var(--text-dark);
}

.gallery-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.gallery-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* Left Panel Styles */
.qr-section {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.kiosk-cam-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  background: #f4f4ff;
  border-radius: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e0e0ff;
}

.align-box {
  position: absolute;
  height: 50%;
  width: 50%;
  border: 2px dashed #fff;
  border-radius: 1rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kiosk-cam-placeholder canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: #3b3b3b;
}

.qr-instruction {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.qr-manual-text {
  font-size: 0.8rem;
  color: var(--text-light) !important;
  margin-bottom: 25px;
}

.kiosk-form-input {
  background: #f5f5ff;
  border: none;
  padding: 12px 20px;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.btn-kiosk-submit {
  background: var(--silent-navy);
  color: white;
  border: none;
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  font-weight: 500;
  transition: transform 0.2s;
}
.btn-kiosk-submit:hover {
  transform: translateY(-2px);
  color: white;
}

/* Right Panel Styles */
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 25px;
}

.mini-stat-box {
  background: white;
  padding: 20px;
  border: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-radius: 1rem;
  -webkit-mask-box-image-repeat: stretch;
}

.m-stat-label {
  font-size: 0.75rem;
  color: var(--text-light) !important;
  margin-bottom: 5px;
}
.m-stat-value {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  color: var(--text-dark);
}
.m-stat-icon {
  font-size: 1.2rem;
  color: #e0e0ff;
}

.recent-checkins-title {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.checkin-list {
  list-style: none;
  padding: 0;
}

.checkin-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f8f8f8;
}

.guest-avatar-circle {
  width: 40px;
  height: 40px;
  background: var(--silent-navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 0.9rem;
}

.guest-details {
  flex: 1;
}
.g-name {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0;
  color: var(--text-dark);
}
.g-group {
  font-size: 0.75rem;
  color: var(--text-light);
}
.g-time {
  font-size: 0.85rem;
  color: #27ae60;
  font-weight: 500;
}

/* Modal Customization */
.modal-content-results {
  background-color: #e7e6ff; /* Lavender background per reference */
  border: none;
  -webkit-mask-box-image-source: var(--squircle-svg);
  -webkit-mask-box-image-slice: 48% fill;
  -webkit-mask-box-image-width: 40px;
  -webkit-mask-box-image-repeat: stretch;
  padding: 30px;
}

.results-header {
  text-align: center;
  margin-bottom: 25px;
}
.results-title {
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1.25rem;
  margin-bottom: 5px;
}
.results-subtitle {
  font-size: 0.8rem;
  color: var(--text-light);
}

.search-result-card {
  background: white;
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.search-result-card:hover {
  transform: scale(1.02);
}
.search-result-card.selected {
  border-color: var(--silent-navy);
}

.status-check {
  color: #27ae60;
  font-size: 1.2rem;
}

.btn-modal-action {
  background: var(--silent-navy);
  color: white;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  font-weight: 500;
  border: none;
  margin-top: 20px;
}

/* Footer */
.kiosk-footer,
.booth-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.help-link {
  color: white;
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .kiosk-grid {
    grid-template-columns: 1fr;
  }
  .kiosk-page-wrapper {
    padding: 20px;
  }
}

/* //////////////////////////////////////////////////////////// */

/* PHOTOBOOTH ////////////////////////////////////////////////////// */

.booth-page-wrapper {
  background: linear-gradient(135deg, #711a6e 0%, #e94e5b 100%);
  min-height: 100vh;
  min-height: 100dvh;
  padding: 40px;
  display: flex;
  flex-direction: column;
  color: white;
  font-family: "Poppins", sans-serif;
}

.booth-top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.booth-main-branding {
  text-align: center;
  margin-bottom: 40px;
}

.booth-page-title {
  font-size: 2.5rem;
  font-weight: 500;
  margin: 0;
}

.booth-grid {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 25px;
  flex: 1;
}

.camera-viewfinder {
  flex: 1;
  background: #333;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.camera-overlay-label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: white;
  background: #00000049;
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 400;
}

.live-stream {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-image: url("/assets/img/thumb1.png");
  background-size: cover;
  background-position: center;
}

.btn-capture {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: none;
  padding: 12px 25px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  z-index: 10;
}
.btn-capture:hover {
  transform: translateX(-50%) translateY(-3px);
}
.btn-capture:active {
  transform: translateX(-50%) scale(0.95);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  flex: 1;
  align-content: flex-start;
  overflow-y: auto;
  padding-bottom: 5rem;
}

.photo-thumb {
  height: max-content;
  aspect-ratio: 1/1;
  background: #eee;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.2s;
}
.photo-thumb:hover {
  opacity: 0.8;
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-download-all {
  background: white;
  color: var(--text-dark);
  border: 1px solid #eaeaea;
  padding: 1rem 2rem;
  border-radius: 15px;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.2s;
}

.btn-download-all:hover {
  background: #f8f8f8;
}

/* EDITOR MODAL //////////////////////////////////////////////////// */

.modal-editor-content {
  background: transparent;
  border: none;
  max-width: 1000px;
}

.editor-container {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.editor-image-wrapper {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 15px;
  overflow: visible; /* Needed for controls popping out */
}

.editor-img {
  width: 100%;
  height: 500px;
  display: block;
  border-radius: 15px;
  object-fit: cover;
}

/* Placed Accessory Item */
.placed-accessory {
  position: absolute;
  cursor: grab;
  z-index: 50;
  width: 120px;
  user-select: none;
  padding: 5px;
  border: 2px solid transparent;
  transition: transform 0.4s ease;
}

.placed-accessory.selected {
  border-radius: 10px;
}

.placed-accessory img {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
}

/* Visual frame that holds image and border */
.accessory-frame {
  width: 100%;
  height: auto;
  padding: 5px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

img.premium-accs {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}

.placed-accessory.selected .accessory-frame {
  border: 5px dotted white;
  background: rgba(108, 93, 211, 0.05);
  border-radius: 10px;
}

.placed-accessory:hover {
  transform: scale(1.04);
}

/* Accessory Control Menu */
.accessory-controls {
  position: absolute;
  bottom: -65px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffffaf;
  backdrop-filter: blur(1rem);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: none; /* Shown via .selected */
  gap: 5px;
  padding: 6px;
  z-index: 100;
  border: 1px solid #f0f0f0;
}

.placed-accessory.selected .accessory-controls {
  display: flex;
}

.ctrl-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ffffffaf;
  border: none;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.ctrl-btn i {
  margin-top: 0.2rem;
}

.ctrl-btn:hover {
  background: #ebebf5;
  color: var(--primary-purple);
}
.ctrl-btn.btn-check:hover {
  background: #e8f5e9;
  color: #27ae60;
}
.ctrl-btn.btn-delete:hover {
  background: #fff5f5;
  color: #eb5757;
}

/* Floating Tool Bar */
.editor-toolbar {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 60;
}

.tool-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--primary-purple);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
.tool-btn:hover {
  transform: scale(1.1);
}
.tool-btn.active {
  background: var(--primary-purple);
  color: white;
}

/* Accessories Sidebar */
.accessories-sidebar {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 280px;
  /* background: white; */
  border: 2px solid #ffffff;
  background: #ffffffaf;
  backdrop-filter: blur(1rem);
  border-radius: 25px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  z-index: 70;
  display: none;
  -webkit-mask-box-image-source: var(--squircle-svg);
  -webkit-mask-box-image-slice: 48% fill;
  -webkit-mask-box-image-width: 30px;
  -webkit-mask-box-image-repeat: stretch;
}

.sidebar-title {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.accessories-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.accessory-card {
  background: #ffffff4b;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 88px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.accessory-card img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  pointer-events: none;
}

.flash {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 100;
  display: none;
}

@media (max-width: 991px) {
  .booth-grid {
    grid-template-columns: 1fr;
  }
  .booth-page-wrapper {
    padding: 20px;
  }
  .camera-section {
    height: 400px;
  }
}

/* //////////////////////////////////////////////////////////// */

/* SPINNER ////////////////////////////////////////////////////// */

/* Loading Overlay for Demo */
#pageOverlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(1rem);
}

/* //////////////////////////////////////////////////////////// */

/* VERIFICATION MODAL /////////////////////////////////////////// */

.custom-modal-content {
  border-radius: 24px;
  border: none;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modal-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  font-size: 0.8rem;
  opacity: 0.5;
}

.modal-close-btn:hover {
  opacity: 1;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: rgba(108, 93, 211, 0.1); /* var(--primary-purple) with 10% opacity */
  color: var(--primary-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}

.custom-modal-content .modal-title {
  font-weight: 400;
  color: var(--text-dark);
  font-size: 1.5rem;
}

.btn-skip {
  background-color: var(--text-dark); /* Using the dark navy from your variables */
  color: white;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-skip:hover {
  background-color: var(--attractive-navy);
  color: white;
}

.resend-link {
  color: var(--primary-purple);
  text-decoration: none;
  font-weight: 400;
  font-size: 0.9rem;
}

.resend-link:hover {
  text-decoration: underline;
  color: var(--attractive-navy);
}

/* //////////////////////////////////////////////////////////// */

/* LOGIN FAILURE MODAL /////////////////////////////////////////// */

.icon-circle-error {
  background-color: rgba(255, 71, 87, 0.1) !important; /* Soft Red Background */
  color: #ff4757 !important; /* Vibrant Red Icon */
}

.btn-error-action {
  background-color: #ff4757;
  color: white;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.2s ease;
  border: none;
}

.btn-error-action:hover {
  background-color: #ff6b81;
  color: white;
}

/* PASSWORD TOGGLE /////////////////////////////////////////// */

.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.toggle-password-icon {
  position: absolute;
  right: 15px;
  top: 40%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s ease;
  z-index: 10;
}

.toggle-password-icon:hover {
  color: var(--primary-purple);
}

/* TERMS PAGE SPECIFIC /////////////////////////////////////////// */

.terms-content {
  max-height: 300px;
}

/* Custom Scrollbar for Terms Content */
.terms-content::-webkit-scrollbar {
  width: 6px;
}

.terms-content::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.terms-content::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: 10px;
}

.terms-content::-webkit-scrollbar-thumb:hover {
  background: var(--attractive-navy);
}

.terms-content section h5 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.terms-content p {
  line-height: 1.6;
}

.card-view {
  transition: opacity 0.3s ease;
}

/* EVENTS PAGE /////////////////////////////////////////// */

.events-page-hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 1.25rem;
  border-radius: 28px;
  background:
    radial-gradient(720px 260px at 0% 0%, rgba(233, 247, 255, 0.95) 0%, rgba(233, 247, 255, 0) 62%),
    radial-gradient(520px 240px at 100% 0%, rgba(249, 239, 224, 0.9) 0%, rgba(249, 239, 224, 0) 60%),
    linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  border: 1px solid #e7edf5;
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.05);
}

.events-page-eyebrow {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #eef5ff;
  color: #4d6b8d;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.events-page-title {
  margin: 0;
  color: #1a2433;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.events-page-subtitle {
  margin: 0.45rem 0 0;
  max-width: 760px;
  color: #60728b;
}

.events-page-hero__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.events-page-count {
  min-width: 170px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #e5edf6;
  text-align: right;
}

.events-page-count span {
  display: block;
  font-size: 0.8rem;
  color: #6a7f99;
}

.events-page-count strong {
  display: block;
  margin-top: 0.15rem;
  color: #1f3650;
  font-size: 1.55rem;
  line-height: 1;
}

.events-page-create-btn {
  white-space: nowrap;
  border-radius: 14px;
  padding-inline: 1rem;
}

.events-filter-card {
  margin-bottom: 1.5rem;
  border-radius: 24px;
}

.events-filter-card .card-body {
  padding: 1.2rem;
}

.events-filter-card .form-label {
  color: #536b88;
  font-size: 0.86rem;
  font-weight: 600;
}

.events-filter-card .form-control,
.events-filter-card .form-select {
  min-height: 48px;
  border-radius: 14px;
  border-color: #dce5f0;
  box-shadow: none;
}

.events-filter-card .btn {
  min-height: 48px;
  border-radius: 14px;
}

.events-page-results {
  padding-bottom: 1rem;
}

.events-page-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  justify-content: center;
  gap: 1.25rem 0;
}

.events-page-grid .event-card-wrapper {
  width: 100%;
  max-width: 400px;
}

.events-status-accordion {
  display: grid;
  gap: 1rem;
}

.events-status-accordion .accordion-item {
  border: 1px solid #e4ebf3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  background: #fff;
}

.events-status-accordion .accordion-button {
  padding: 1.15rem 1.25rem;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 100%);
  color: #1f2f46;
  font-weight: 600;
  box-shadow: none;
  gap: 0.75rem;
}

.events-status-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
  color: #16263d;
}

.events-status-accordion .accordion-button:focus {
  box-shadow: none;
}

.events-status-accordion .accordion-body {
  padding: 1.25rem;
  background: #fcfdff;
}

.events-status-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding-right: 0.5rem;
}

.events-status-count {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: #eef3fb;
  color: #516983;
  font-size: 0.85rem;
  font-weight: 700;
}

.events-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.events-status-pill--active {
  background: #eaf7f0;
  color: #1f8a5a;
}

.events-status-pill--draft {
  background: #f0f3f8;
  color: #617388;
}

.events-status-pill--completed {
  background: #fff7e8;
  color: #ad7515;
}

.events-status-pill--cancelled {
  background: #fff0f0;
  color: #c45252;
}

.events-status-grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
  justify-content: center;
  gap: 1.25rem 0;
}

.events-empty-state {
  padding: 3rem 1.5rem;
  border-radius: 24px;
  border: 1px dashed #d6dfeb;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.events-empty-state__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1rem;
  border-radius: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eff5ff 0%, #fff4ef 100%);
  color: #6f79db;
  font-size: 1.5rem;
}

.events-empty-state h2 {
  margin-bottom: 0.45rem;
  color: #1e2940;
  font-size: 1.2rem;
}

.events-empty-state p {
  margin: 0;
  color: #6b7f98;
}

@media (max-width: 991.98px) {
  .events-page-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .events-page-hero__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .events-page-count {
    width: 100%;
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .events-page-grid {
    margin: 0;
  }

  .events-page-grid .event-card-wrapper {
    max-width: 100%;
  }
}

/* WALLET EXPERIENCE /////////////////////////////////////////// */

.wallet-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  background:
    radial-gradient(circle at top right, rgba(161, 152, 229, 0.16), transparent 24%),
    linear-gradient(180deg, #fcfcff 0%, #f6f7ff 100%);
  padding: 36px 0 80px;
}

.wallet-dashboard {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wallet-hero-card,
.wallet-insight-card,
.wallet-offers-card,
.wallet-activity-card,
.wallet-offer-card,
.wallet-topup-balance-panel,
.wallet-topup-summary-card,
.wallet-topup-package-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(108, 93, 211, 0.08);
  box-shadow: 0 20px 45px rgba(108, 93, 211, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.wallet-page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 0 4px;
}

.wallet-page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-purple);
  margin-bottom: 10px;
}

.wallet-page-title,
.wallet-panel-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
  color: var(--text-dark);
}

.wallet-page-copy {
  max-width: 760px;
}

.wallet-page-copy,
.wallet-offers-copy,
.wallet-hero-note,
.wallet-topup-modal__hero p,
.wallet-topup-summary-copy,
.wallet-topup-summary-note,
.wallet-empty-state p,
.wallet-offer-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.6;
}

.wallet-hero-note {
  color: #fff;
}

.wallet-page-actions,
.wallet-hero-actions,
.wallet-filter-group,
.wallet-topup-package-meta,
.wallet-topup-payment-methods,
.wallet-activity-meta,
.wallet-sync-chip,
.wallet-trust-stack,
.wallet-panel-header {
  display: flex;
  align-items: center;
}

.wallet-page-actions,
.wallet-hero-actions,
.wallet-filter-group,
.wallet-topup-payment-methods {
  flex-wrap: wrap;
  gap: 12px;
}

.wallet-primary-btn,
.wallet-secondary-btn,
.wallet-text-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  font-weight: 400;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.wallet-primary-btn,
.wallet-secondary-btn {
  padding: 0 18px;
  min-height: 48px;
  border-radius: 999px;
}

.wallet-primary-btn {
  background: linear-gradient(135deg, #6c5dd3 0%, #7371fc 100%);
  color: #fff;
  box-shadow: 0 16px 30px rgba(108, 93, 211, 0.22);
}

.wallet-primary-btn:hover,
.wallet-secondary-btn:hover,
.wallet-text-btn:hover,
.wallet-primary-btn:focus-visible,
.wallet-secondary-btn:focus-visible,
.wallet-text-btn:focus-visible,
.wallet-topup-package-card:hover {
  transform: translateY(-2px);
}

.wallet-primary-btn--light {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.wallet-primary-btn:disabled,
.wallet-secondary-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.wallet-secondary-btn {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid rgba(108, 93, 211, 0.12);
  box-shadow: 0 10px 25px rgba(31, 31, 57, 0.06);
}

.wallet-secondary-btn--ghost {
  background: #fff;
  color: var(--primary-purple);
  border-color: rgba(108, 93, 211, 0.12);
  box-shadow: none;
}

.wallet-text-btn {
  background: transparent;
  color: var(--primary-purple);
  padding: 0;
  font-size: 0.95rem;
}

.wallet-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.8fr);
  gap: 28px;
  padding: 34px;
  border-radius: 34px;
  background: linear-gradient(135deg, #6455d0 0%, #7a7afc 100%);
  color: #fff;
  overflow: hidden;
}

.wallet-hero-card::before,
.wallet-hero-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  pointer-events: none;
}

.wallet-hero-card::before {
  width: 220px;
  height: 220px;
  top: -72px;
  right: -40px;
}

.wallet-hero-card::after {
  width: 140px;
  height: 140px;
  bottom: -40px;
  left: 46%;
}

.wallet-hero-main,
.wallet-hero-side {
  position: relative;
  z-index: 1;
}

.wallet-balance-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  font-weight: 400;
}

.wallet-balance-display {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 18px 0 12px;
}

.wallet-balance-display span {
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.wallet-balance-display small {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: 0.88;
  padding-bottom: 10px;
}

.wallet-hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
}

.wallet-sync-chip {
  align-self: flex-start;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(20, 20, 43, 0.18);
  font-size: 0.9rem;
}

.wallet-sync-chip i {
  font-size: 0.55rem;
  color: #6bf2ab;
}

.wallet-trust-stack {
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.wallet-trust-stack > div {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.wallet-trust-stack span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.72;
  margin-bottom: 6px;
}

.wallet-trust-stack strong {
  font-size: 1rem;
  font-weight: 400;
}

.wallet-hero-orb {
  align-self: flex-end;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.wallet-insight-grid {
  margin-top: 2px;
}

.wallet-insight-card,
.wallet-offers-card,
.wallet-activity-card {
  padding: 26px;
}

.wallet-offers-card {
  border-radius: 34px;
}

.wallet-activity-card {
  margin-top: 1rem;
  border-radius: 34px;
}

.wallet-insight-card {
  height: 100%;
  border-radius: 26px;
}

.wallet-insight-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.wallet-insight-card strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.wallet-insight-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.55;
}

.wallet-panel-header {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.wallet-panel-header--compact {
  margin-bottom: 14px;
}

.wallet-panel-header h2 {
  font-size: 1.55rem;
}

.wallet-offers-copy {
  margin-bottom: 20px;
}

.wallet-offers-list {
  display: grid;
  gap: 14px;
}

.wallet-offer-card {
  padding: 18px;
  border-radius: 22px;
}

.wallet-offer-card.is-featured {
  border-color: rgba(108, 93, 211, 0.2);
  background: linear-gradient(180deg, rgba(108, 93, 211, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.wallet-offer-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.wallet-offer-badge,
.wallet-topup-package-tag,
.wallet-activity-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.wallet-offer-badge,
.wallet-topup-package-tag {
  padding: 8px 12px;
  background: rgba(108, 93, 211, 0.08);
  color: var(--primary-purple);
}

.wallet-offer-card strong {
  color: var(--text-dark);
  font-size: 1rem;
}

.wallet-offer-card h3 {
  margin: 0 0 6px;
  font-size: 1.18rem;
  color: var(--text-dark);
}

.wallet-offer-card p {
  margin-bottom: 14px;
}

.wallet-offer-skeleton,
.wallet-offer-empty {
  padding: 18px;
  border-radius: 22px;
  background: rgba(108, 93, 211, 0.06);
  color: var(--text-light);
  text-align: center;
}

.wallet-support-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  margin-top: 18px;
  border-radius: 22px;
  background: rgba(108, 93, 211, 0.06);
  color: var(--text-light);
  line-height: 1.55;
}

.wallet-support-note i {
  color: var(--primary-purple);
}

.wallet-filter-chip {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(108, 93, 211, 0.1);
  background: #fff;
  color: var(--text-light);
  font-weight: 400;
  transition: all 0.2s ease;
}

.wallet-filter-chip.is-active {
  background: rgba(108, 93, 211, 0.1);
  color: var(--primary-purple);
  border-color: rgba(108, 93, 211, 0.18);
}

.wallet-activity-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wallet-activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(108, 93, 211, 0.04);
  border: 1px solid rgba(108, 93, 211, 0.08);
}

.wallet-activity-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  font-size: 1rem;
}

.wallet-activity-icon.is-credit,
.wallet-activity-pill.is-credit {
  background: rgba(57, 208, 129, 0.12);
  color: #1a9d5d;
}

.wallet-activity-icon.is-debit,
.wallet-activity-pill.is-debit {
  background: rgba(255, 120, 93, 0.12);
  color: #dc5b36;
}

.wallet-activity-copy {
  flex: 1;
  min-width: 0;
}

.wallet-activity-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.wallet-activity-topline h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-dark);
}

.wallet-activity-amount {
  flex: 0 0 auto;
  font-size: 1rem;
  font-weight: 700;
}

.wallet-activity-amount.is-credit {
  color: #1a9d5d;
}

.wallet-activity-amount.is-debit {
  color: #dc5b36;
}

.wallet-activity-meta {
  flex-wrap: wrap;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.wallet-activity-pill {
  padding: 6px 10px;
}

.wallet-activity-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.wallet-activity-pagination-summary {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.5;
}

.wallet-activity-pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.wallet-pagination-pages {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.wallet-pagination-btn,
.wallet-pagination-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid rgba(108, 93, 211, 0.12);
  background: #fff;
  color: var(--text-dark);
  font-weight: 600;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.wallet-pagination-btn {
  padding: 0 16px;
  border-radius: 999px;
}

.wallet-pagination-page {
  min-width: 42px;
  padding: 0 12px;
  border-radius: 14px;
}

.wallet-pagination-btn:hover,
.wallet-pagination-page:hover,
.wallet-pagination-btn:focus-visible,
.wallet-pagination-page:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(108, 93, 211, 0.24);
}

.wallet-pagination-page.is-active {
  background: linear-gradient(135deg, #6c5dd3 0%, #7371fc 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 12px 24px rgba(108, 93, 211, 0.18);
}

.wallet-pagination-btn:disabled,
.wallet-pagination-page:disabled {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.wallet-empty-state {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 12px;
  padding: 34px 18px 10px;
}

.wallet-empty-state--modal {
  padding: 36px 18px;
}

.wallet-empty-state-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: rgba(108, 93, 211, 0.08);
  color: var(--primary-purple);
  font-size: 1.5rem;
}

.wallet-empty-state h4 {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text-dark);
}

.wallet-topup-modal {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wallet-topup-modal__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.wallet-topup-modal__hero h3 {
  margin: 0 0 10px;
  font-size: 1.7rem;
  color: var(--text-dark);
}

.wallet-topup-modal__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.wallet-topup-modal__overview {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 18px;
  align-items: start;
}

.wallet-topup-balance-panel,
.wallet-topup-summary-card {
  padding: 22px;
  border-radius: 24px;
  height: 100%;
}

.wallet-topup-balance-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.wallet-topup-balance-panel span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 700;
}

.wallet-topup-balance-panel strong {
  font-size: 2rem;
  line-height: 1;
  color: var(--text-dark);
}

.wallet-topup-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.wallet-topup-package-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  cursor: pointer;
}

.wallet-topup-package-card.is-selected {
  border-color: rgba(108, 93, 211, 0.24);
  background: linear-gradient(180deg, rgba(108, 93, 211, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
  box-shadow: 0 24px 38px rgba(108, 93, 211, 0.12);
}

.wallet-topup-package-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.wallet-topup-package-head strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.wallet-topup-package-card h4 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-dark);
}

.wallet-topup-package-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.55;
}

.wallet-topup-package-meta {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  font-size: 0.85rem;
  color: var(--text-light);
}

.wallet-topup-package-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.wallet-topup-package-btn {
  width: 100%;
  margin-top: 2px;
}

.wallet-topup-summary-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wallet-topup-summary-card h4 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--text-dark);
}

.wallet-topup-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.wallet-topup-summary-grid div {
  padding: 14px 12px;
  border-radius: 18px;
  background: rgba(108, 93, 211, 0.05);
}

.wallet-topup-summary-grid span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 6px;
}

.wallet-topup-summary-grid strong {
  display: block;
  font-size: 1rem;
  color: var(--text-dark);
}

.wallet-topup-payment-methods span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(108, 93, 211, 0.08);
  color: var(--primary-purple);
  font-size: 0.82rem;
  font-weight: 400;
}

.wallet-topup-summary-card .wallet-primary-btn {
  width: 100%;
}

.wallet-inline-alert {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 120, 9 3, 0.12);
  color: #cf4a24;
  font-size: 0.92rem;
  line-height: 1.55;
}

@media (max-width: 1199px) {
  .wallet-page-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .wallet-hero-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .wallet-wrapper {
    padding-top: 28px;
  }
  .wallet-hero-card,
  .wallet-insight-card,
  .wallet-offers-card,
  .wallet-activity-card,
  .wallet-topup-balance-panel,
  .wallet-topup-summary-card {
    padding: 22px;
  }
  .wallet-page-title,
  .wallet-panel-header h2 {
    font-size: 2rem;
  }
  .wallet-topup-modal__overview {
    grid-template-columns: 1fr;
  }
  .wallet-activity-topline {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  .wallet-wrapper {
    padding-bottom: 64px;
  }
  .wallet-balance-display span {
    font-size: 2.8rem;
  }
  .wallet-page-actions,
  .wallet-hero-actions,
  .wallet-filter-group,
  .wallet-topup-payment-methods {
    width: 100%;
  }
  .wallet-page-actions > *,
  .wallet-hero-actions > *,
  .wallet-filter-group > *,
  .wallet-activity-footer > * {
    flex: 1 1 100%;
    width: 100%;
  }
  .wallet-panel-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .wallet-activity-pagination {
    justify-content: center;
  }
  .wallet-topup-package-grid,
  .wallet-topup-summary-grid {
    grid-template-columns: 1fr;
  }
  .wallet-offer-card-top,
  .wallet-topup-package-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  .wallet-hero-card,
  .wallet-insight-card,
  .wallet-offers-card,
  .wallet-activity-card,
  .wallet-topup-balance-panel,
  .wallet-topup-summary-card,
  .wallet-topup-package-card {
    border-radius: 22px;
  }
  .wallet-page-title,
  .wallet-panel-header h2 {
    font-size: 1.7rem;
  }
  .wallet-activity-item {
    padding: 16px;
  }
  .wallet-activity-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }
}

@media (max-width: 767px) {
  #frameworkModal.wallet-topup-shell .modal-dialog.wallet-topup-dialog {
    width: calc(100vw - 1rem);
    max-width: calc(100vw - 1rem);
    margin: 0.5rem auto;
  }

  #frameworkModal.wallet-topup-shell .modal-body {
    padding-inline: 1rem;
  }
}

/* //////////////////////////////////////////////////////////// */

@media (max-width: 768px) {
  h2 {
    font-size: 2rem !important;
  }
  .hero-subtitle {
    font-size: 1.5rem;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .cta-card {
    padding: 40px 20px;
  }
  .feature-card {
    height: auto;
    min-height: 250px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
