
:root {
  
  --brand: #0b6c5f;
  --brand-light: #d7efe8;
  --brand-dark: #075247;

  
  --white: #ffffff;
  --black: #000000;
  --body-bg: #f6f3ee;
  --sidebar-bg: #ffffff;
  --text-color: #334155;
  --text-muted: #64748b;
  --border-color: #e2e8f0;

  
  --accent-blue: #38bdf8;
  --accent-indigo: #1e3a8a;
  --accent-yellow: #ffc107;
  --accent-orange: #f97316;
  --accent-red: #ef4444;
  --accent-purple: #7c3aed;
  --accent-gray: #6c757d;
  --accent-darkgray: #2d3748;
  --accent-silver: #4a5568;

  
  --sidebar-width: 260px;
  --topbar-height: 65px;
}


body {
  background-color: var(--body-bg);
  font-family: 'Sora', 'Noto Sans', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: var(--text-color);
}

.btn-brand {
  background: var(--brand);
  color: var(--white);
  border: none;
}

.btn-brand:hover {
  background: var(--brand-dark);
  color: var(--white);
}

.text-brand {
  color: var(--brand) !important;
}

.card {
  border: 1px solid var(--border-color);
  box-shadow: 0 1px 3px rgba(0, 0, 0, .03);
  border-radius: 0.75rem;
}

.pending-approvals-card,
.pending-approvals-card .card-body,
.pending-approvals-table {
  overflow: visible;
}

.pending-approvals-card .dropdown-menu {
  z-index: 1080;
  min-width: 260px;
}

@media (max-width: 767.98px) {
  .pending-approvals-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 .25rem rgba(18, 140, 126, .15);
  border-color: var(--brand);
}


.app-layout {
  display: flex;
}

.sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--sidebar-bg);
  border-right: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  transform: translateX(0);
  z-index: 1030;
}

.sidebar-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: linear-gradient(145deg, var(--brand), var(--accent-yellow));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 12px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.sidebar-nav {
  padding: 1rem;
  overflow-y: auto;
  flex-grow: 1;
}

.nav-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  margin-top: 1rem;
  display: block;
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.7rem 1rem;
  border-radius: 6px;
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 0.25rem;
  transition: all 0.2s ease-in-out;
}

.sidebar-nav a:hover {
  background-color: var(--brand-light);
  color: var(--brand-dark);
}

.sidebar-nav a.active {
  background-color: var(--brand);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(18, 140, 126, 0.25);
}

.sidebar-nav a i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.main-content {
  margin-left: var(--sidebar-width);
  width: calc(100% - var(--sidebar-width));
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  height: var(--topbar-height);
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.content-body {
  padding: 1.5rem;
  flex-grow: 1;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 1020;
}

.overlay.active {
  display: block;
}

@media (max-width: 991.98px) {
  .sidebar {
    transform: translateX(-100%);
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 250px;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
    width: 100%;
  }
}


body.landing-page .app-layout {
  display: block;
}

body.landing-page .sidebar,
body.landing-page .topbar,
body.landing-page .main-content {
  display: none;
}

body.landing-page .content-body {
  padding: 0;
}

.landing-nav {
  background: transparent;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.landing-nav.scrolled {
  background-color: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid #1e293b;
}

.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: relative;
  color: var(--white);
  overflow: hidden;
  padding: 2rem;
  background-color: #0c0a18;
  background-image: linear-gradient(180deg, #0c0a18 0%, #1a1a2e 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}


#particle-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--white);
  border-radius: 50%;
  bottom: -10px;
  opacity: 0;
  animation: animateParticles 15s linear infinite;
}

.particle:nth-child(3n) {
  width: 3px;
  height: 3px;
  animation-duration: 10s;
  animation-delay: 1s;
}

.particle:nth-child(5n) {
  width: 1px;
  height: 1px;
  animation-duration: 20s;
  animation-delay: 2s;
}


@keyframes animateParticles {
  0% {
    transform: translateY(0) translateX(var(--x-start));
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) translateX(var(--x-end));
    opacity: 0;
  }
}


.hero-title {
  animation: fadeInDown 1s ease-out;
}

.hero-subtitle {
  animation: fadeInDown 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-buttons {
  animation: fadeInUp 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.hero-version {
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.9s;
  
  opacity: 0;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.footer-links {
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--accent-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration: underline;
}


.auth-wrapper {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.auth-brand-col {
  width: 45%;
  background: linear-gradient(135deg,
      var(--brand-light) 0%,
      var(--brand) 50%,
      var(--brand-dark) 100%);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}


.auth-form-col {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  background-color: var(--white);
}

.auth-form-wrapper {
  width: 100%;
  max-width: 400px;
}

.form-title {
  font-weight: 700;
  color: var(--text-color);
}

.form-subtitle {
  color: var(--text-muted);
}


@media (max-width: 991.98px) {
  .auth-brand-col {
    display: none;
  }

  .auth-form-col {
    width: 100%;
  }
}

.brand-content {
  text-align: center;
  color: var(--white);
  z-index: 2;
  
}

.brand-icon {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  
}

.brand-title a {
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 1px;
  transition: opacity 0.2s ease-in-out;
}

.brand-title a:hover {
  opacity: 0.85;
}

.brand-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  
  max-width: 320px;
  margin: 0 auto;
  line-height: 1.5;
}


.testimonial-card {
  position: relative;
  padding-top: 50px;
  margin-top: 50px;
}

.testimonial-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--body-bg);
}

.blockquote-footer {
  font-weight: 600;
}

.version-badge {
  background: linear-gradient(45deg, var(--accent-darkgray), var(--accent-silver));
  color: var(--white);
  padding: 0.5em 1.2em;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  display: inline-block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}


@media (max-width: 768px) {
  .testimonials-section {
    padding-bottom: 3rem;
  }
}

.testimonials-section {
  background-color: #f8f9fa;
  padding-bottom: 4rem;
}

.testimonial-card-modern {
  background-color: var(--white);
  border: 1px solid #e9ecef;
  border-radius: 12px;
  padding: 1.5rem;
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding-top: 2rem;
}

.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

.testimonial-header {
  margin-bottom: 1rem;
}

.star-rating {
  color: var(--accent-yellow);
  font-size: 0.9rem;
}


.screenshot-section {
  background-color: var(--white);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.phone-mockup {
  position: relative;
  max-width: 250px;
  margin: 0 auto;
  padding: 12px;
  border-radius: 40px;
  background: #111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 2px 0 #fff3;
  transition: transform 0.3s ease;
}

.phone-mockup:hover {
  transform: translateY(-10px) scale(1.05);
}

.phone-mockup .screen {
  background: var(--black);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
}

.phone-mockup .screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}




.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease-in-out;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
}


.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  margin-bottom: .75rem;
}


.testimonial-author h6 {
  margin-bottom: 0;
  font-weight: 600;
}

.star-rating i {
  color: var(--accent-yellow);
}


.testimonial-body {
  font-size: .95rem;
  color: var(--text-color);
  flex-grow: 1;
}

.testimonial-footer {
  font-size: .8rem;
  color: var(--text-muted);
  margin-top: .75rem;
}




.rating-input {
  display: flex;
  flex-direction: row-reverse;
  
  justify-content: center;
  gap: 0.25rem;
}

.rating-input input {
  display: none;
}

.rating-input label {
  font-size: 2rem;
  color: #d1d1d1;
  cursor: pointer;
  transition: color 0.2s;
}


.rating-input label:hover,
.rating-input label:hover~label {
  color: var(--accent-yellow);
}


.rating-input input:checked~label {
  color: var(--accent-yellow);
}


.feature-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.feature-icon-symbol {
  font-size: 2rem;
  
  color: var(--brand);
  
}


.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--brand);
  color: var(--white);
  margin: 0 auto 1rem auto;
  
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
}

.feature-icon i {
  font-size: 2rem;
  
}

body.landing-page .security-section {
  scroll-margin-top: 88px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid rgba(148, 163, 184, .18);
  border-bottom: 1px solid rgba(148, 163, 184, .18);
}

body.landing-page .security-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: end;
  gap: 2rem;
}

body.landing-page .section-eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: .75rem;
  padding: .38rem .75rem;
  border-radius: 999px;
  background: rgba(11, 108, 95, .10);
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
}

body.landing-page .security-section-header h2 {
  color: #0f172a;
  letter-spacing: 0;
}

body.landing-page .security-section-header .lead {
  max-width: 760px;
}

body.landing-page .security-summary {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(11, 108, 95, .16);
  border-radius: 20px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 40px rgba(15, 23, 42, .08);
}

body.landing-page .security-summary-icon {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--brand);
  color: var(--white);
  font-size: 1.55rem;
}

body.landing-page .security-summary-label {
  display: block;
  margin-bottom: .15rem;
  color: var(--text-muted);
  font-size: .78rem;
  font-weight: 700;
}

body.landing-page .security-summary strong {
  display: block;
  color: #0f172a;
  line-height: 1.35;
}

body.landing-page .security-feature-card {
  --feature-accent: var(--brand);
  --feature-accent-dark: var(--brand-dark);
  --feature-accent-soft: rgba(11, 108, 95, .10);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, .22);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 36px rgba(15, 23, 42, .07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.landing-page .security-feature-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: var(--feature-accent);
}

body.landing-page .security-feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--feature-accent);
  box-shadow: 0 22px 48px rgba(15, 23, 42, .11);
}

body.landing-page .security-feature-card-body {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.45rem;
}

body.landing-page .security-feature-card .feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 0 1rem;
  border-radius: 16px;
  background: var(--feature-accent-soft);
  color: var(--feature-accent-dark);
  box-shadow: none;
}

body.landing-page .security-feature-card .feature-icon i {
  font-size: 1.45rem;
}

body.landing-page .feature-kicker {
  color: var(--feature-accent-dark);
  font-size: .72rem;
  font-weight: 800;
  margin-bottom: .45rem;
}

body.landing-page .security-feature-card h2 {
  color: #0f172a;
  margin-bottom: .65rem;
}

body.landing-page .security-feature-card p {
  line-height: 1.65;
}

body.landing-page .security-feature-card-primary {
  --feature-accent: #0b6c5f;
  --feature-accent-dark: #075247;
  --feature-accent-soft: rgba(11, 108, 95, .10);
}

body.landing-page .security-feature-card-teal {
  --feature-accent: #0891b2;
  --feature-accent-dark: #0e7490;
  --feature-accent-soft: rgba(8, 145, 178, .10);
}

body.landing-page .security-feature-card-blue {
  --feature-accent: #2563eb;
  --feature-accent-dark: #1d4ed8;
  --feature-accent-soft: rgba(37, 99, 235, .10);
}

body.landing-page .security-feature-card-slate {
  --feature-accent: #475569;
  --feature-accent-dark: #334155;
  --feature-accent-soft: rgba(71, 85, 105, .12);
}

body.landing-page .security-feature-card-amber {
  --feature-accent: #d97706;
  --feature-accent-dark: #b45309;
  --feature-accent-soft: rgba(217, 119, 6, .12);
}

body.landing-page .security-feature-card-indigo {
  --feature-accent: #4f46e5;
  --feature-accent-dark: #4338ca;
  --feature-accent-soft: rgba(79, 70, 229, .10);
}

@media (max-width: 991.98px) {
  body.landing-page .security-section-header {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body.landing-page .security-summary {
    max-width: 520px;
  }
}

@media (max-width: 575.98px) {
  body.landing-page .security-section-header {
    gap: 1.25rem;
    margin-bottom: 2rem !important;
  }

  body.landing-page .security-summary {
    align-items: flex-start;
    padding: 1rem;
  }

  body.landing-page .security-feature-card-body {
    padding: 1.25rem;
  }
}


.card-header.brand-header {
  background-color: var(--brand) !important;
  color: var(--white);
}

body.landing-page .pricing-section {
  scroll-margin-top: 88px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-bottom: 1px solid rgba(148, 163, 184, .18);
}

body.landing-page .pricing-section-header {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

body.landing-page .pricing-section-header .section-eyebrow {
  margin-bottom: .85rem;
}

body.landing-page .pricing-card-modern {
  --pricing-accent: #0b6c5f;
  --pricing-accent-dark: #075247;
  --pricing-accent-soft: rgba(11, 108, 95, .10);
  --pricing-border: rgba(11, 108, 95, .26);
  --pricing-shadow: rgba(11, 108, 95, .15);
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--pricing-border);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .09);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.landing-page .pricing-card-modern:hover {
  transform: translateY(-4px);
  border-color: var(--pricing-accent);
  box-shadow: 0 22px 54px rgba(15, 23, 42, .13);
}

body.landing-page .pricing-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--pricing-accent);
}

body.landing-page .pricing-card-payg {
  --pricing-accent: #0b6c5f;
  --pricing-accent-dark: #075247;
  --pricing-accent-soft: rgba(11, 108, 95, .10);
  --pricing-border: rgba(11, 108, 95, .26);
  --pricing-shadow: rgba(11, 108, 95, .18);
}

body.landing-page .pricing-card-unlimited {
  --pricing-accent: #f97316;
  --pricing-accent-dark: #c2410c;
  --pricing-accent-soft: rgba(249, 115, 22, .12);
  --pricing-border: rgba(249, 115, 22, .30);
  --pricing-shadow: rgba(249, 115, 22, .18);
}

body.landing-page .pricing-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 0;
}

body.landing-page .pricing-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pricing-accent-soft);
  color: var(--pricing-accent-dark);
  font-size: 1.55rem;
}

body.landing-page .pricing-badge,
body.landing-page .pricing-plan-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  background: var(--pricing-accent-soft);
  color: var(--pricing-accent-dark);
  font-weight: 800;
  letter-spacing: 0;
}

body.landing-page .pricing-badge {
  min-height: 34px;
  padding: .45rem .8rem;
  font-size: .78rem;
}

body.landing-page .pricing-plan-label {
  margin-bottom: .85rem;
  padding: .32rem .65rem;
  font-size: .72rem;
}

body.landing-page .pricing-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.5rem 1.5rem;
}

body.landing-page .pricing-card-copy {
  color: var(--text-muted);
  min-height: 48px;
  margin-bottom: 1.25rem;
}

body.landing-page .price-tag {
  color: var(--pricing-accent-dark);
}

body.landing-page .pricing-price-row {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: .45rem .6rem;
  padding: 1rem;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, .18);
}

body.landing-page .pricing-main-price {
  color: var(--pricing-accent-dark);
  font-size: 3rem;
  line-height: 1;
  font-weight: 900;
}

body.landing-page .pricing-old-price {
  color: var(--text-muted);
  font-size: 1.15rem;
  font-weight: 800;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

body.landing-page .pricing-period {
  color: var(--text-muted);
  font-size: .95rem;
  font-weight: 700;
}

body.landing-page .pricing-feature-list {
  display: grid;
  gap: .85rem;
  margin: 0 0 1.5rem;
  color: #334155;
}

body.landing-page .pricing-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
}

body.landing-page .pricing-feature-list i {
  color: var(--pricing-accent);
  margin-top: .12rem;
}

body.landing-page .pricing-btn {
  margin-top: auto;
  min-height: 48px;
  border-radius: 999px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pricing-accent);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 28px var(--pricing-shadow);
}

body.landing-page .pricing-btn:hover {
  background: var(--pricing-accent-dark);
  color: var(--white);
}

@media (max-width: 575.98px) {
  body.landing-page .pricing-card-top {
    padding: 1.25rem 1.25rem 0;
  }

  body.landing-page .pricing-card-body {
    padding: 1rem 1.25rem 1.25rem;
  }

  body.landing-page .pricing-main-price {
    font-size: 2.35rem;
  }

  body.landing-page .pricing-price-row {
    padding: .9rem;
  }
}



.chat-widget-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

#chat-toggle-button {
  background-color: #0088cc;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#chat-toggle-button.has-new::after {
  content: '';
  position: absolute;
  top: 8px;
  
  right: 8px;
  
  width: 12px;
  
  height: 12px;
  background: red;
  border-radius: 50%;
  border: 2px solid white;
  
}

#chat-window {
  width: 350px;
  height: 450px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: white;
  display: none;
  flex-direction: column;
  overflow: hidden;
  margin-bottom: 10px;
}

.chat-header {
  background: #0088cc;
  color: white;
  padding: 15px;
  font-weight: bold;
  text-align: center;
}

.chat-body {
  flex: 1;
  padding: 10px;
  overflow-y: auto;
  background-color: #f4f7f9;
  display: flex;
  flex-direction: column;
}

.chat-message {
  padding: 8px 12px;
  border-radius: 18px;
  margin-bottom: 10px;
  max-width: 80%;
  line-height: 1.4;
}

.chat-message.user {
  background-color: #0088cc;
  color: white;
  align-self: flex-end;
}

.chat-message.admin {
  background-color: #e5e5ea;
  color: black;
  align-self: flex-start;
}

.chat-footer {
  display: flex;
  padding: 10px;
  border-top: 1px solid #ddd;
}

#chat-input {
  flex: 1;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 10px 15px;
  margin-right: 10px;
}

#chat-send {
  background-color: #0088cc;
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  font-size: 18px;
}


.chat-message.error {
  background-color: #f8d7da;
  
  color: #721c24;
  
  border-left: 4px solid #f5c6cb;
  
  border-radius: 4px;
  align-self: flex-start;
  
  font-style: italic;
  font-size: 0.9em;
  
}


.chat-message.error::before {
  content: "Alert: ";
  
  font-weight: bold;
  margin-right: 5px;
}


.tutorial-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem;
}

.tutorial-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.tutorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.tutorial-card .card-title {
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
}

ol.tutorial-steps {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

ol.tutorial-steps li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
    color: #495057;
}

ol.tutorial-steps li::marker {
    font-weight: bold;
    color: var(--bs-primary);
}


@media (max-width: 767.98px) {
    .tutorial-container {
        padding: 0.5rem;
    }

    .tutorial-card {
        padding: 1.25rem;
    }
}


.whatsapp-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whatsapp-text {
  color: #333;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 4px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

.whatsapp-fab {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
  color: #FFF;
}

.whatsapp-fab i {
  line-height: 1;
}

@keyframes pulse-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 1;
  }
}

.broadcast-icon-pulse {
  animation: pulse-animation 2s infinite;
}
.alert .collapse p {
  white-space: pre-wrap;
  word-break: break-word;
}
.alert-heading {
  font-size: 1rem;
}

.text-break-word {
  word-break: break-word;
}

.is-clickable {
  cursor: pointer;
}

.provider-ref-small {
  font-size: .78em;
}

.icon-box-warning {
  background: var(--dash-warning-soft);
  color: #d97706;
}

.icon-box-success {
  background: var(--dash-success-soft);
  color: #15803d;
}

.icon-box-xl {
  width: 64px;
  height: 64px;
  border-radius: 22px;
}

.dashboard-sticky-side {
  top: 1rem;
  z-index: 10;
}

.progress-thin {
  height: 8px;
}

.progress-bar-empty {
  width: 0%;
}

.history-icon-box-success {
  background: rgba(25, 135, 84, .1);
}

.invoice-method-icon {
  width: 48px;
  height: 48px;
}

.invoice-sticky-summary {
  top: 1rem;
}

.loading-progress {
  height: 9px;
}

.progress-bar-start {
  width: 25%;
}

/* Older view migrated styles */

/* layout top */
:root {
      --nx-bg: #f6f8fb;
      --nx-surface: rgba(255, 255, 255, .92);
      --nx-sidebar: #0f172a;
      --nx-sidebar-soft: #17223a;
      --nx-text: #101828;
      --nx-muted: #667085;
      --nx-border: rgba(15, 23, 42, .08);
      --nx-brand: #2563eb;
      --nx-brand-2: #0ea5e9;
      --nx-radius: 20px;
      --nx-shadow: 0 20px 50px rgba(15, 23, 42, .08);
      --nx-sidebar-width: 280px;
    }

    * { box-sizing: border-box; }

    html { min-height: 100%; }

    body {
      min-height: 100vh;
      font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--nx-text);
      background:
        radial-gradient(circle at top left, rgba(37, 99, 235, .10), transparent 30rem),
        radial-gradient(circle at bottom right, rgba(14, 165, 233, .08), transparent 24rem),
        var(--nx-bg);
      -webkit-font-smoothing: antialiased;
      text-rendering: geometricPrecision;
    }

    .app-layout {
      min-height: 100vh;
      display: flex;
      width: 100%;
    }

    .sidebar {
      width: var(--nx-sidebar-width);
      min-height: 100vh;
      position: fixed;
      inset: 0 auto 0 0;
      z-index: 1040;
      display: flex;
      flex-direction: column;
      background:
        linear-gradient(180deg, rgba(15, 23, 42, .98), rgba(17, 24, 39, .98)),
        var(--nx-sidebar);
      border-right: 1px solid rgba(255, 255, 255, .08);
      box-shadow: 16px 0 40px rgba(15, 23, 42, .12);
      transition: transform .25s ease;
    }

    .sidebar-header {
      padding: 22px 18px 14px;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .brand-link {
      display: flex;
      align-items: center;
      gap: 12px;
      color: #fff;
      text-decoration: none;
      min-width: 0;
    }

    .brand-link:hover { color: #fff; }

    .brand-logo {
      width: 44px;
      height: 44px;
      flex: 0 0 44px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: #fff;
      background: linear-gradient(135deg, var(--nx-brand), var(--nx-brand-2));
      box-shadow: 0 14px 24px rgba(37, 99, 235, .28);
    }

    .brand-logo i { font-size: 1.35rem; }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
      min-width: 0;
    }

    .brand-text span {
      font-size: 1.05rem;
      letter-spacing: -.02em;
    }

    .brand-text small {
      margin-top: 3px;
      color: rgba(255, 255, 255, .62);
      font-size: .74rem;
      white-space: nowrap;
    }

    .sidebar-nav {
      padding: 14px 12px 20px;
      overflow-y: auto;
      scrollbar-width: thin;
      scrollbar-color: rgba(255, 255, 255, .28) transparent;
    }

    .nav-title {
      display: block;
      margin: 16px 12px 8px;
      color: rgba(255, 255, 255, .42);
      font-size: .68rem;
      font-weight: 800;
      letter-spacing: .12em;
    }

    .sidebar-nav a {
      position: relative;
      display: flex;
      align-items: center;
      gap: 11px;
      min-height: 44px;
      padding: 10px 12px;
      margin: 3px 0;
      border-radius: 14px;
      color: rgba(255, 255, 255, .76);
      text-decoration: none;
      font-size: .92rem;
      font-weight: 600;
      transition: background .18s ease, color .18s ease, transform .18s ease;
    }

    .sidebar-nav a i {
      width: 22px;
      flex: 0 0 22px;
      text-align: center;
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .68);
      transition: color .18s ease;
    }

    .sidebar-nav a:hover {
      color: #fff;
      background: rgba(255, 255, 255, .08);
      transform: translateX(2px);
    }

    .sidebar-nav a:hover i { color: #fff; }

    .sidebar-nav a.active {
      color: #fff;
      background: linear-gradient(135deg, rgba(37, 99, 235, .95), rgba(14, 165, 233, .82));
      box-shadow: 0 12px 28px rgba(37, 99, 235, .25);
    }

    .sidebar-nav a.active i { color: #fff; }

    .main-content {
      width: 100%;
      min-width: 0;
      margin-left: var(--nx-sidebar-width);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 1030;
      min-height: 72px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px clamp(16px, 3vw, 34px);
      background: rgba(246, 248, 251, .78);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--nx-border);
    }

    .mobile-menu-btn {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      display: inline-grid;
      place-items: center;
      color: var(--nx-text);
      background: var(--nx-surface);
      border: 1px solid var(--nx-border);
      box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
    }

    .topbar-title {
      display: none;
      min-width: 0;
    }

    .topbar-title strong {
      display: block;
      font-size: .95rem;
      letter-spacing: -.01em;
    }

    .topbar-title span {
      display: block;
      color: var(--nx-muted);
      font-size: .76rem;
    }

    .topbar-user {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-height: 44px;
      padding: 6px 8px 6px 6px;
      border-radius: 999px;
      color: var(--nx-text);
      background: var(--nx-surface);
      border: 1px solid var(--nx-border);
      box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
      text-decoration: none;
    }

    .topbar-user img {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #e5e7eb;
    }

    .topbar-user .user-meta {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
      max-width: 150px;
    }

    .topbar-user .user-meta strong {
      font-size: .86rem;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .topbar-user .user-meta small {
      color: var(--nx-muted);
      font-size: .7rem;
      margin-top: 2px;
    }

    .auth-actions .btn,
    .dropdown-menu .dropdown-item {
      font-weight: 600;
    }

    .dropdown-menu {
      border: 1px solid var(--nx-border);
      border-radius: 16px;
      padding: 8px;
      box-shadow: var(--nx-shadow);
    }

    .dropdown-item {
      border-radius: 11px;
      padding: 9px 10px;
      font-size: .92rem;
    }

    .content-body {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: clamp(16px, 3vw, 34px);
    }

    .overlay {
      position: fixed;
      inset: 0;
      z-index: 1035;
      background: rgba(15, 23, 42, .45);
      backdrop-filter: blur(2px);
      opacity: 0;
      visibility: hidden;
      transition: opacity .2s ease, visibility .2s ease;
    }

    body.sidebar-open .overlay {
      opacity: 1;
      visibility: visible;
    }

    body.sidebar-open { overflow: hidden; }

    .landing-page .sidebar,
    .landing-page .topbar {
      display: none;
    }

    .landing-page .main-content {
      margin-left: 0;
    }

    .landing-page .content-body {
      max-width: none;
      padding: 0;
    }

    @media (max-width: 991.98px) {
      :root { --nx-sidebar-width: 278px; }

      .sidebar {
        transform: translateX(-102%);
      }

      body.sidebar-open .sidebar {
        transform: translateX(0);
      }

      .main-content {
        margin-left: 0;
      }

      .topbar {
        min-height: 64px;
        padding: 10px 14px;
      }

      .topbar-title {
        display: block;
      }

      .content-body {
        padding: 16px 14px 28px;
      }

      .sidebar-header {
        padding: 18px 16px 12px;
      }

      .sidebar-nav a {
        min-height: 42px;
        font-size: .9rem;
      }
    }

    @media (max-width: 575.98px) {
      .topbar-user {
        padding: 5px;
      }

      .topbar-user .user-meta,
      .topbar-user::after {
        display: none;
      }

      .auth-actions {
        gap: 8px !important;
      }

      .auth-actions .btn {
        padding-inline: 12px;
      }
    }

/* layout bottom */
.app-footer {
        margin-left: var(--sidebar-width, 280px);
        padding: 18px 0;
        color: #64748b;
        font-size: .82rem;
        background: transparent;
    }

    .footer-brand,
    .footer-meta {
        display: inline-flex;
        align-items: center;
        gap: .5rem;
    }

    .footer-logo {
        width: 28px;
        height: 28px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        color: #2563eb;
        background: rgba(37, 99, 235, .1);
        border: 1px solid rgba(37, 99, 235, .14);
    }

    .chat-widget-container {
        position: fixed;
        right: 22px;
        bottom: 22px;
        z-index: 1080;
        font-family: inherit;
    }

    #chat-toggle-button {
        width: 58px;
        height: 58px;
        border: 0;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 1.35rem;
        background: linear-gradient(135deg, #2563eb, #0f172a);
        box-shadow: 0 18px 38px rgba(15, 23, 42, .26);
        transition: transform .2s ease, box-shadow .2s ease;
    }

    #chat-toggle-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 22px 45px rgba(15, 23, 42, .32);
    }

    #chat-toggle-button.has-new::after {
        content: '';
        position: absolute;
        top: 8px;
        right: 9px;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ef4444;
        border: 2px solid #fff;
        box-shadow: 0 0 0 6px rgba(239, 68, 68, .18);
    }

    #chat-window {
        display: none;
        flex-direction: column;
        width: min(360px, calc(100vw - 32px));
        height: min(520px, calc(100vh - 110px));
        margin-bottom: 14px;
        overflow: hidden;
        border-radius: 24px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(148, 163, 184, .24);
        box-shadow: 0 24px 70px rgba(15, 23, 42, .24);
        backdrop-filter: blur(18px);
    }

    .chat-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .75rem;
        padding: 16px 18px;
        color: #fff;
        font-weight: 800;
        letter-spacing: -.01em;
        background: linear-gradient(135deg, #2563eb, #0f172a);
    }

    .chat-header::before {
        content: '\F24B';
        font-family: bootstrap-icons !important;
        width: 34px;
        height: 34px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background: rgba(255, 255, 255, .16);
    }

    .chat-header::after {
        content: 'Online';
        margin-left: auto;
        padding: 4px 10px;
        border-radius: 999px;
        font-size: .72rem;
        font-weight: 700;
        color: #dcfce7;
        background: rgba(34, 197, 94, .18);
        border: 1px solid rgba(187, 247, 208, .28);
    }

    .chat-body {
        flex: 1;
        padding: 16px;
        overflow-y: auto;
        background:
            radial-gradient(circle at top right, rgba(37, 99, 235, .08), transparent 30%),
            #f8fafc;
    }

    .chat-message {
        max-width: 86%;
        margin-bottom: 10px;
        padding: 10px 12px;
        border-radius: 16px;
        font-size: .9rem;
        line-height: 1.45;
        word-break: break-word;
        box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
    }

    .chat-message.admin {
        color: #0f172a;
        background: #fff;
        border: 1px solid rgba(148, 163, 184, .18);
        border-bottom-left-radius: 6px;
    }

    .chat-message.user {
        margin-left: auto;
        color: #fff;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        border-bottom-right-radius: 6px;
    }

    .chat-message.error {
        max-width: 100%;
        color: #991b1b;
        background: #fee2e2;
        border: 1px solid #fecaca;
    }

    .chat-footer {
        display: flex;
        gap: 10px;
        padding: 12px;
        background: #fff;
        border-top: 1px solid rgba(148, 163, 184, .18);
    }

    #chat-input {
        flex: 1;
        min-width: 0;
        border: 1px solid rgba(148, 163, 184, .28);
        border-radius: 999px;
        padding: 10px 14px;
        outline: none;
        font-size: .92rem;
        background: #f8fafc;
        transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    }

    #chat-input:focus {
        border-color: rgba(37, 99, 235, .55);
        background: #fff;
        box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .12);
    }

    #chat-send {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        border: 0;
        border-radius: 999px;
        color: #fff;
        background: #2563eb;
        transition: transform .2s ease, opacity .2s ease;
    }

    #chat-send:hover {
        transform: translateY(-1px);
    }

    #chat-send:disabled,
    #chat-input:disabled {
        opacity: .65;
        cursor: not-allowed;
    }

    @media (max-width: 991.98px) {
        .app-footer {
            margin-left: 0;
            padding-bottom: 92px;
            text-align: center;
        }

        .footer-brand,
        .footer-meta {
            justify-content: center;
        }

        .chat-widget-container {
            right: 16px;
            bottom: 16px;
        }

        #chat-toggle-button {
            width: 54px;
            height: 54px;
            font-size: 1.22rem;
        }

        #chat-window {
            width: calc(100vw - 24px);
            height: min(500px, calc(100vh - 92px));
            border-radius: 22px;
        }

        .chat-header {
            padding: 14px 15px;
            font-size: .95rem;
        }

        .chat-body {
            padding: 14px;
        }

        .chat-message {
            font-size: .86rem;
            max-width: 90%;
        }
    }

/* dashboard */
body.page-dashboard {
        --dash-bg: #f6f8fb;
        --dash-surface: #ffffff;
        --dash-border: rgba(15, 23, 42, .08);
        --dash-muted: #64748b;
        --dash-dark: #0f172a;
        --dash-primary: #2563eb;
        --dash-primary-soft: rgba(37, 99, 235, .10);
        --dash-success-soft: rgba(22, 163, 74, .10);
        --dash-warning-soft: rgba(245, 158, 11, .14);
        --dash-danger-soft: rgba(220, 38, 38, .10);
        --dash-radius: 24px;
    }

    body.page-dashboard {
        background: radial-gradient(circle at top left, rgba(37, 99, 235, .08), transparent 34rem), var(--dash-bg);
    }

    body.page-dashboard .dashboard-shell {
        max-width: 1320px;
        margin: 0 auto;
    }

    body.page-dashboard .dashboard-hero,
body.page-dashboard .dashboard-card,
body.page-dashboard .config-panel,
body.page-dashboard .config-item-pro,
body.page-dashboard .broadcast-card,
body.page-dashboard .promo-card,
body.page-dashboard .balance-card {
        border: 1px solid var(--dash-border);
        border-radius: var(--dash-radius);
        background: rgba(255, 255, 255, .92);
        box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
    }

    body.page-dashboard .dashboard-hero {
        position: relative;
        overflow: hidden;
        padding: clamp(1.25rem, 3vw, 2rem);
        color: #fff;
        background:
            linear-gradient(135deg, rgba(37, 99, 235, .96), rgba(14, 165, 233, .86)),
            radial-gradient(circle at top right, rgba(255, 255, 255, .24), transparent 20rem);
    }

    body.page-dashboard .dashboard-hero::after {
        content: "";
        position: absolute;
        inset: auto -4rem -7rem auto;
        width: 18rem;
        height: 18rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
    }

    body.page-dashboard .hero-content {
        position: relative;
        z-index: 1;
    }

    body.page-dashboard .hero-chip,
body.page-dashboard .device-chip {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        border-radius: 999px;
        padding: .5rem .75rem;
        font-size: .875rem;
    }

    body.page-dashboard .hero-chip {
        background: rgba(255, 255, 255, .18);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .2);
    }

    body.page-dashboard .device-chip {
        max-width: 100%;
        background: rgba(255, 255, 255, .16);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, .18);
        backdrop-filter: blur(10px);
    }

    body.page-dashboard .device-id-text {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        max-width: min(52vw, 360px);
    }

    body.page-dashboard .icon-box {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--dash-primary-soft);
        color: var(--dash-primary);
        flex: 0 0 auto;
    }

    body.page-dashboard .metric-card {
        border: 1px solid rgba(255,255,255,.28);
        border-radius: 20px;
        padding: 1rem;
        background: rgba(255,255,255,.16);
        backdrop-filter: blur(10px);
    }

    body.page-dashboard .balance-card,
body.page-dashboard .promo-card,
body.page-dashboard .config-panel {
        overflow: hidden;
    }

    body.page-dashboard .balance-amount {
        font-size: clamp(2rem, 5vw, 3.25rem);
        letter-spacing: -.04em;
        line-height: 1;
    }

    body.page-dashboard .usd-pill {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: var(--dash-success-soft);
        color: #15803d;
        font-weight: 700;
    }

    body.page-dashboard .btn-soft-primary {
        background: var(--dash-primary-soft);
        color: var(--dash-primary);
        border: 1px solid rgba(37, 99, 235, .18);
        font-weight: 700;
    }

    body.page-dashboard .btn-soft-primary:hover {
        background: rgba(37, 99, 235, .16);
        color: #1d4ed8;
    }

    body.page-dashboard .dashboard-card-header {
        padding: 1.15rem 1.25rem;
        border-bottom: 1px solid var(--dash-border);
        background: linear-gradient(180deg, rgba(248,250,252,.92), rgba(255,255,255,.92));
    }

    body.page-dashboard .config-toolbar {
        gap: .75rem;
    }

    body.page-dashboard .config-search {
        max-width: 320px;
    }

    body.page-dashboard .config-item-pro {
        box-shadow: none;
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
    }

    body.page-dashboard .config-item-pro:hover {
        transform: translateY(-2px);
        border-color: rgba(37, 99, 235, .2);
        box-shadow: 0 16px 40px rgba(15, 23, 42, .08);
    }

    body.page-dashboard .config-title {
        color: var(--dash-dark);
        letter-spacing: -.01em;
    }

    body.page-dashboard .server-pill,
body.page-dashboard .quota-pill,
body.page-dashboard .expiry-pill {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        border-radius: 999px;
        padding: .38rem .65rem;
        font-size: .78rem;
        font-weight: 700;
    }

    body.page-dashboard .server-pill { background: #f1f5f9; color: #334155; }
    body.page-dashboard .quota-pill { background: rgba(14, 165, 233, .12); color: #0369a1; }
    body.page-dashboard .expiry-pill.success { background: var(--dash-success-soft); color: #15803d; }
    body.page-dashboard .expiry-pill.danger { background: var(--dash-danger-soft); color: #b91c1c; }

    body.page-dashboard .usage-text-placeholder {
        color: var(--dash-muted);
    }

    body.page-dashboard .progress {
        background-color: #e2e8f0;
        border-radius: 999px;
        overflow: hidden;
    }

    body.page-dashboard .progress-bar {
        background: linear-gradient(90deg, #2563eb, #06b6d4);
        transition: width .4s ease;
    }

    body.page-dashboard .progress-bar.bg-danger {
        background: linear-gradient(90deg, #dc2626, #f97316) !important;
    }

    body.page-dashboard .action-btn {
        width: 40px;
        height: 40px;
        border-radius: 14px !important;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    body.page-dashboard .flash-message,
body.page-dashboard .broadcast-card {
        border-radius: 18px;
    }

    body.page-dashboard .broadcast-card {
        background: linear-gradient(135deg, #eff6ff, #ffffff);
    }

    body.page-dashboard .empty-state {
        padding: clamp(2rem, 5vw, 4rem) 1rem;
    }

    body.page-dashboard .modal-content {
        border: 0;
        border-radius: 24px;
        overflow: hidden;
    }

    @media (max-width: 767.98px) {
        body.page-dashboard .dashboard-shell {
            padding-inline: .25rem;
        }

        body.page-dashboard .dashboard-hero {
            border-radius: 22px;
        }

        body.page-dashboard .dashboard-hero {
            padding: 1rem;
        }

        body.page-dashboard .hero-chip,
body.page-dashboard .device-chip {
            font-size: .72rem;
            padding: .38rem .58rem;
            gap: .32rem;
        }

        body.page-dashboard .dashboard-hero h1 {
            font-size: 1.35rem;
            line-height: 1.18;
            letter-spacing: -.02em;
        }

        body.page-dashboard .dashboard-hero p {
            font-size: .86rem;
            line-height: 1.45;
        }

        body.page-dashboard .device-id-text {
            max-width: 46vw;
        }

        body.page-dashboard .card-body.p-4,
body.page-dashboard .dashboard-card-header,
body.page-dashboard .config-item-pro.p-3,
body.page-dashboard .config-item-pro.p-md-4,
body.page-dashboard .promo-card .card-body,
body.page-dashboard .balance-card .card-body {
            padding: 1rem !important;
        }

        body.page-dashboard .icon-box {
            width: 38px;
            height: 38px;
            border-radius: 14px;
        }

        body.page-dashboard .balance-amount {
            font-size: clamp(1.55rem, 8vw, 2.05rem);
            line-height: 1.08;
            word-break: break-word;
        }

        body.page-dashboard .usd-pill {
            font-size: .82rem;
            padding: .45rem .65rem;
        }

        body.page-dashboard .balance-card h2,
body.page-dashboard .config-panel h2,
body.page-dashboard .promo-card h3,
body.page-dashboard .config-title,
body.page-dashboard .empty-state h3,
body.page-dashboard .broadcast-card h5 {
            font-size: 1rem !important;
            line-height: 1.28;
        }

        body.page-dashboard .small,
body.page-dashboard small,
body.page-dashboard .text-muted,
body.page-dashboard .usage-text-placeholder,
body.page-dashboard .form-control,
body.page-dashboard .input-group-text,
body.page-dashboard .btn,
body.page-dashboard .server-pill,
body.page-dashboard .quota-pill,
body.page-dashboard .expiry-pill,
body.page-dashboard .badge {
            font-size: .78rem;
        }

        body.page-dashboard .btn-lg {
            --bs-btn-font-size: .9rem;
            --bs-btn-padding-y: .62rem;
            --bs-btn-padding-x: .85rem;
        }

        body.page-dashboard .input-group-lg > .form-control,
body.page-dashboard .input-group-lg > .btn,
body.page-dashboard .input-group-lg > .input-group-text {
            min-height: 42px;
            padding-top: .52rem;
            padding-bottom: .52rem;
            font-size: .85rem;
        }

        body.page-dashboard .server-pill,
body.page-dashboard .quota-pill,
body.page-dashboard .expiry-pill {
            padding: .32rem .52rem;
            gap: .28rem;
        }

        body.page-dashboard .action-btn {
            width: auto;
            min-height: 40px;
            height: 40px;
            font-size: .85rem;
        }

        body.page-dashboard .modal-title {
            font-size: 1rem;
        }

        body.page-dashboard .modal-body,
body.page-dashboard .modal-footer .btn {
            font-size: .88rem;
        }

        body.page-dashboard .config-toolbar,
body.page-dashboard .config-item-top {
            flex-direction: column;
            align-items: stretch !important;
        }

        body.page-dashboard .config-search {
            max-width: 100%;
        }

        body.page-dashboard .btn-group.config-actions {
            width: 100%;
            gap: .5rem;
        }

        body.page-dashboard .btn-group.config-actions .btn {
            flex: 1;
        }

        body.page-dashboard .sticky-lg-top {
            position: static !important;
        }
    }

/* admin history */
body.page-admin-history .history-page {
        --history-radius: 1.25rem;
        --history-soft: #f7f9fc;
        --history-border: rgba(15, 23, 42, .08);
        --history-text: #0f172a;
        --history-muted: #64748b;
    }

    body.page-admin-history .history-hero,
body.page-admin-history .history-card {
        border: 1px solid var(--history-border);
        border-radius: var(--history-radius);
        background: #fff;
        box-shadow: 0 18px 45px rgba(15, 23, 42, .06);
    }

    body.page-admin-history .history-hero {
        overflow: hidden;
        position: relative;
    }

    body.page-admin-history .history-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(circle at top left, rgba(13, 110, 253, .14), transparent 36%),
            radial-gradient(circle at bottom right, rgba(25, 135, 84, .11), transparent 34%);
        pointer-events: none;
    }

    body.page-admin-history .history-hero > * {
        position: relative;
        z-index: 1;
    }

    body.page-admin-history .history-icon {
        width: 46px;
        height: 46px;
        border-radius: 15px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(13, 110, 253, .1);
        color: var(--bs-primary);
    }

    body.page-admin-history .history-filter-card .form-label {
        color: var(--history-muted);
        letter-spacing: .02em;
    }

    body.page-admin-history .history-filter-card .form-select,
body.page-admin-history .history-filter-card .btn {
        min-height: 42px;
        border-radius: .9rem;
    }

    body.page-admin-history .history-tabs {
        gap: .5rem;
        border: 0;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: .25rem;
        scrollbar-width: thin;
    }

    body.page-admin-history .history-tabs .nav-link {
        white-space: nowrap;
        border: 1px solid var(--history-border);
        border-radius: 999px;
        color: var(--history-muted);
        background: #fff;
        font-weight: 700;
        font-size: .9rem;
        padding: .7rem 1rem;
    }

    body.page-admin-history .history-tabs .nav-link.active {
        color: #fff;
        background: var(--bs-primary);
        border-color: var(--bs-primary);
        box-shadow: 0 10px 22px rgba(13, 110, 253, .22);
    }

    body.page-admin-history .history-card {
        overflow: hidden;
    }

    /* The filter card must not clip the searchable user dropdown menu */
    body.page-admin-history .history-filter-card {
        overflow: visible;
    }

    body.page-admin-history .history-filter-card .dropdown-menu {
        border: 1px solid var(--history-border);
        border-radius: .9rem;
        box-shadow: 0 18px 45px rgba(15, 23, 42, .12);
    }

    body.page-admin-history .history-filter-card .dropdown-menu .dropdown-item {
        border-radius: .6rem;
        padding: .45rem .75rem;
    }

    body.page-admin-history .history-card-header {
        padding: 1rem 1.15rem;
        border-bottom: 1px solid var(--history-border);
        background: linear-gradient(180deg, #fff, var(--history-soft));
    }

    body.page-admin-history .history-card-title {
        color: var(--history-text);
        font-weight: 800;
        margin: 0;
    }

    body.page-admin-history .history-card-subtitle {
        color: var(--history-muted);
        font-size: .82rem;
        margin: .2rem 0 0;
    }

    body.page-admin-history .history-table {
        --bs-table-hover-bg: rgba(13, 110, 253, .035);
        margin: 0;
    }

    body.page-admin-history .history-table thead th {
        font-size: .74rem;
        text-transform: uppercase;
        letter-spacing: .045em;
        color: var(--history-muted);
        background: #f8fafc;
        border-bottom: 1px solid var(--history-border);
        white-space: nowrap;
        padding: .85rem 1rem;
    }

    body.page-admin-history .history-table tbody td {
        vertical-align: middle;
        padding: .9rem 1rem;
        border-color: rgba(15, 23, 42, .06);
    }

    body.page-admin-history .history-table a {
        font-weight: 700;
        text-decoration: none;
    }

    body.page-admin-history .history-amount {
        font-weight: 800;
        letter-spacing: -.01em;
    }

    body.page-admin-history .history-empty {
        padding: 3rem 1rem;
        text-align: center;
        color: var(--history-muted);
    }

    body.page-admin-history .history-empty i {
        display: block;
        font-size: 2rem;
        margin-bottom: .5rem;
        opacity: .65;
    }

    body.page-admin-history .history-pagination {
        padding: 1rem;
        border-top: 1px solid var(--history-border);
        background: #fff;
    }

    body.page-admin-history .history-pagination .page-link {
        border-radius: .8rem;
        margin-left: .25rem;
        font-weight: 700;
    }

    body.page-admin-history .history-modal .modal-content {
        border: 0;
        border-radius: 1.25rem;
        box-shadow: 0 22px 60px rgba(15, 23, 42, .18);
    }

    @media (max-width: 767.98px) {
        body.page-admin-history .history-page {
            font-size: .92rem;
        }

        body.page-admin-history .history-hero {
            border-radius: 1rem;
        }

        body.page-admin-history .history-hero h1 {
            font-size: 1.2rem;
        }

        body.page-admin-history .history-hero p {
            font-size: .86rem;
        }

        body.page-admin-history .history-icon {
            width: 40px;
            height: 40px;
            border-radius: 13px;
        }

        body.page-admin-history .history-filter-card .card-body {
            padding: 1rem !important;
        }

        body.page-admin-history .history-tabs .nav-link {
            font-size: .82rem;
            padding: .62rem .85rem;
        }

        body.page-admin-history .history-card {
            border-radius: 1rem;
        }

        body.page-admin-history .history-card-header {
            padding: .9rem 1rem;
        }

        body.page-admin-history .history-card-title {
            font-size: .98rem;
        }

        body.page-admin-history .history-card-subtitle {
            font-size: .78rem;
        }

        body.page-admin-history .history-table-wrap {
            overflow: visible !important;
        }

        body.page-admin-history .history-table,
body.page-admin-history .history-table thead,
body.page-admin-history .history-table tbody,
body.page-admin-history .history-table th,
body.page-admin-history .history-table td,
body.page-admin-history .history-table tr {
            display: block;
            width: 100%;
        }

        body.page-admin-history .history-table thead {
            display: none;
        }

        body.page-admin-history .history-table tbody {
            padding: .85rem;
            background: #f8fafc;
        }

        body.page-admin-history .history-table tbody tr {
            border: 1px solid var(--history-border);
            border-radius: 1rem;
            background: #fff;
            margin-bottom: .85rem;
            padding: .75rem;
            box-shadow: 0 10px 25px rgba(15, 23, 42, .05);
        }

        body.page-admin-history .history-table tbody tr:last-child {
            margin-bottom: 0;
        }

        body.page-admin-history .history-table tbody td {
            border: 0;
            padding: .48rem 0;
            display: flex;
            justify-content: space-between;
            gap: 1rem;
            text-align: right !important;
        }

        body.page-admin-history .history-table tbody td::before {
            content: attr(data-label);
            color: var(--history-muted);
            font-size: .76rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: .04em;
            text-align: left;
            flex: 0 0 36%;
        }

        body.page-admin-history .history-table tbody td[data-label="Description"],
body.page-admin-history .history-table tbody td[data-label="Method"] {
            display: block;
            text-align: left !important;
        }

        body.page-admin-history .history-table tbody td[data-label="Description"]::before,
body.page-admin-history .history-table tbody td[data-label="Method"]::before {
            display: block;
            margin-bottom: .25rem;
        }

        body.page-admin-history .history-table tbody td[data-empty="true"] {
            display: block;
            text-align: center !important;
            padding: 2rem 1rem;
        }

        body.page-admin-history .history-table tbody td[data-empty="true"]::before {
            display: none;
        }

        body.page-admin-history .history-pagination {
            padding: .85rem;
        }

        body.page-admin-history .history-pagination > div {
            align-items: stretch !important;
            flex-direction: column;
            gap: .75rem;
        }

        body.page-admin-history .history-pagination .pagination {
            justify-content: space-between !important;
        }

        body.page-admin-history .history-pagination .page-item,
body.page-admin-history .history-pagination .page-link {
            width: 100%;
            text-align: center;
        }
    }

/* user history */
body.page-history .history-page {
        --history-card-radius: 1.25rem;
        --history-soft-bg: #f8fafc;
        --history-border: rgba(15, 23, 42, .08);
        --history-muted: #64748b;
    }
    body.page-history .history-hero {
        border: 1px solid var(--history-border);
        border-radius: var(--history-card-radius);
        background: linear-gradient(135deg, #ffffff 0%, #f8fbff 55%, #eef6ff 100%);
        box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
    }
    body.page-history .history-icon-box {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(13, 110, 253, .1);
        color: var(--bs-primary);
        flex: 0 0 auto;
    }
    body.page-history .history-card {
        border: 1px solid var(--history-border);
        border-radius: var(--history-card-radius);
        box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
        overflow: hidden;
    }
    body.page-history .history-tabs {
        gap: .5rem;
        border: 0;
        background: var(--history-soft-bg);
        padding: .5rem;
        border-radius: 999px;
        display: inline-flex;
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
    }
    body.page-history .history-tabs .nav-link {
        border: 0;
        border-radius: 999px;
        color: #475569;
        font-weight: 700;
        white-space: nowrap;
        padding: .65rem 1rem;
        font-size: .92rem;
    }
    body.page-history .history-tabs .nav-link.active {
        color: #fff;
        background: var(--bs-primary);
        box-shadow: 0 10px 24px rgba(13, 110, 253, .25);
    }
    body.page-history .invoice-card {
        border: 1px solid var(--history-border);
        border-radius: 1rem;
        background: #fff;
        transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
    }
    body.page-history .invoice-card:hover {
        transform: translateY(-1px);
        border-color: rgba(13, 110, 253, .22);
        box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    }
    body.page-history .invoice-method {
        color: var(--history-muted);
        font-size: .85rem;
    }
    body.page-history .history-table {
        --bs-table-hover-bg: #f8fafc;
    }
    body.page-history .history-table thead th {
        color: #64748b;
        font-size: .74rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        border-bottom: 1px solid var(--history-border);
        background: #f8fafc;
        padding: .9rem 1rem;
    }
    body.page-history .history-table tbody td {
        padding: 1rem;
        vertical-align: middle;
        border-color: var(--history-border);
    }
    body.page-history .empty-state {
        border: 1px dashed rgba(15, 23, 42, .14);
        border-radius: 1rem;
        background: #fff;
    }
    body.page-history .countdown-chip {
        display: inline-flex;
        align-items: center;
        gap: .35rem;
        padding: .35rem .65rem;
        border-radius: 999px;
        background: rgba(220, 53, 69, .1);
        color: #dc3545;
        font-size: .82rem;
        font-weight: 700;
    }
    body.page-history .history-mobile-list { display: none; }

    @media (max-width: 767.98px) {
        body.page-history .history-hero {
            border-radius: 1rem;
        }
        body.page-history .history-icon-box {
            width: 40px;
            height: 40px;
            border-radius: 14px;
        }
        body.page-history .history-title {
            font-size: 1.2rem;
        }
        body.page-history .history-subtitle {
            font-size: .86rem;
        }
        body.page-history .history-tabs {
            width: 100%;
            border-radius: 1rem;
        }
        body.page-history .history-tabs .nav-item {
            flex: 1 0 auto;
        }
        body.page-history .history-tabs .nav-link {
            width: 100%;
            padding: .6rem .75rem;
            font-size: .84rem;
        }
        body.page-history .history-card {
            border-radius: 1rem;
        }
        body.page-history .invoice-card {
            border-radius: .95rem;
        }
        body.page-history .invoice-amount {
            font-size: 1.15rem !important;
        }
        body.page-history .history-desktop-table { display: none; }
        body.page-history .history-mobile-list { display: block; }
        body.page-history .mobile-history-item {
            border-bottom: 1px solid var(--history-border);
            padding: 1rem;
        }
        body.page-history .mobile-history-item:last-child {
            border-bottom: 0;
        }
        body.page-history .mobile-history-desc {
            color: #334155;
            font-size: .9rem;
        }
        body.page-history .mobile-history-date {
            color: var(--history-muted);
            font-size: .78rem;
        }
        body.page-history .pagination .page-link {
            padding: .45rem .75rem;
            font-size: .86rem;
        }
    }

/* invoice */
body.page-invoice .invoice-shell {
        --invoice-primary: #2563eb;
        --invoice-primary-soft: #eff6ff;
        --invoice-success-soft: #ecfdf5;
        --invoice-warning-soft: #fffbeb;
        --invoice-danger-soft: #fef2f2;
        --invoice-border: rgba(15, 23, 42, .09);
        --invoice-text: #0f172a;
        --invoice-muted: #64748b;
    }

    body.page-invoice .invoice-hero {
        border: 1px solid var(--invoice-border);
        border-radius: 28px;
        background:
            radial-gradient(circle at top left, rgba(37, 99, 235, .14), transparent 34%),
            linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
        overflow: hidden;
    }

    body.page-invoice .invoice-kicker {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        padding: .42rem .72rem;
        border-radius: 999px;
        background: var(--invoice-primary-soft);
        color: var(--invoice-primary);
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .02em;
    }

    body.page-invoice .invoice-title {
        color: var(--invoice-text);
        font-weight: 800;
        letter-spacing: -.035em;
    }

    body.page-invoice .invoice-subtitle {
        color: var(--invoice-muted);
        max-width: 620px;
    }

    body.page-invoice .invoice-card {
        border: 1px solid var(--invoice-border);
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 14px 34px rgba(15, 23, 42, .07);
    }

    body.page-invoice .invoice-card-soft {
        border: 1px solid var(--invoice-border);
        border-radius: 22px;
        background: #f8fafc;
    }

    body.page-invoice .invoice-amount {
        font-size: clamp(2rem, 4.8vw, 3.5rem);
        line-height: 1;
        font-weight: 900;
        letter-spacing: -.045em;
        color: var(--invoice-primary);
        word-break: break-word;
    }

    body.page-invoice .invoice-meta-row {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 1rem;
        padding: .8rem 0;
        border-bottom: 1px dashed var(--invoice-border);
    }

    body.page-invoice .invoice-meta-row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    body.page-invoice .invoice-meta-label {
        color: var(--invoice-muted);
        font-size: .86rem;
    }

    body.page-invoice .invoice-meta-value {
        color: var(--invoice-text);
        font-weight: 800;
        text-align: end;
    }

    body.page-invoice .invoice-status {
        display: inline-flex;
        align-items: center;
        gap: .4rem;
        border-radius: 999px;
        padding: .38rem .72rem;
        background: var(--invoice-warning-soft);
        color: #92400e;
        font-weight: 800;
        font-size: .78rem;
    }

    body.page-invoice .invoice-deadline {
        border: 1px solid rgba(239, 68, 68, .16);
        background: var(--invoice-danger-soft);
        border-radius: 22px;
        padding: 1rem;
        color: #991b1b;
    }

    body.page-invoice .invoice-countdown {
        font-size: clamp(1.55rem, 7vw, 2.2rem);
        font-weight: 900;
        letter-spacing: -.035em;
        line-height: 1.1;
    }

    body.page-invoice .invoice-pay-box {
        border: 1px solid var(--invoice-border);
        border-radius: 24px;
        background: #fff;
        padding: 1.1rem;
    }

    body.page-invoice .invoice-qr-wrap {
        border: 1px dashed rgba(37, 99, 235, .26);
        border-radius: 24px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        padding: 1.15rem;
        text-align: center;
    }

    body.page-invoice .invoice-qr {
        width: min(250px, 100%);
        max-width: 250px;
        border-radius: 18px;
    }

    body.page-invoice .invoice-code {
        font-size: clamp(1.65rem, 8vw, 3rem);
        line-height: 1.08;
        font-weight: 900;
        letter-spacing: -.035em;
        color: var(--invoice-text);
        word-break: break-word;
    }

    body.page-invoice .invoice-action-btn {
        min-height: 48px;
        border-radius: 999px;
        font-weight: 800;
    }

    body.page-invoice .invoice-instructions {
        border: 1px solid var(--invoice-border);
        border-radius: 22px;
        background: #fff;
        padding: 1rem;
    }

    body.page-invoice .invoice-instructions ol {
        margin-bottom: 0;
    }

    body.page-invoice .invoice-instructions li {
        margin-bottom: .38rem;
        color: var(--invoice-muted);
    }

    body.page-invoice .invoice-mobile-back {
        border-radius: 999px;
    }

    @media (max-width: 767.98px) {
        body.page-invoice .invoice-hero {
            border-radius: 22px;
        }

        body.page-invoice .invoice-hero .card-body {
            padding: 1.15rem !important;
        }

        body.page-invoice .invoice-title {
            font-size: 1.35rem;
        }

        body.page-invoice .invoice-subtitle {
            font-size: .9rem;
        }

        body.page-invoice .invoice-card,
body.page-invoice .invoice-card-soft,
body.page-invoice .invoice-pay-box {
            border-radius: 20px;
        }

        body.page-invoice .invoice-meta-row {
            padding: .7rem 0;
        }

        body.page-invoice .invoice-meta-label,
body.page-invoice .invoice-meta-value {
            font-size: .84rem;
        }

        body.page-invoice .invoice-instructions {
            font-size: .9rem;
        }
    }

/* topup */
body.page-topup {
        --topup-bg: #f6f8fb;
        --topup-surface: #ffffff;
        --topup-border: rgba(15, 23, 42, .08);
        --topup-muted: #64748b;
        --topup-dark: #0f172a;
        --topup-primary: #2563eb;
        --topup-primary-dark: #1d4ed8;
        --topup-primary-soft: rgba(37, 99, 235, .10);
        --topup-success-soft: rgba(22, 163, 74, .10);
        --topup-danger-soft: rgba(220, 38, 38, .10);
        --topup-radius: 24px;
    }

    body.page-topup {
        background: radial-gradient(circle at top left, rgba(37, 99, 235, .08), transparent 34rem), var(--topup-bg);
    }

    body.page-topup .topup-shell {
        max-width: 1120px;
        margin: 0 auto;
    }

    body.page-topup .topup-hero,
body.page-topup .topup-card,
body.page-topup .topup-side-card,
body.page-topup .payment-option,
body.page-topup .quick-amount-btn {
        border: 1px solid var(--topup-border);
        border-radius: var(--topup-radius);
        background: rgba(255, 255, 255, .96);
        box-shadow: 0 20px 55px rgba(15, 23, 42, .07);
    }

    body.page-topup .topup-hero {
        position: relative;
        overflow: hidden;
        padding: clamp(1.15rem, 3vw, 1.8rem);
        color: #fff;
        background: linear-gradient(135deg, rgba(37, 99, 235, .96), rgba(14, 165, 233, .86));
    }

    body.page-topup .topup-hero::after {
        content: "";
        position: absolute;
        right: -4rem;
        bottom: -7rem;
        width: 17rem;
        height: 17rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
    }

    body.page-topup .topup-hero-content {
        position: relative;
        z-index: 1;
    }

    body.page-topup .topup-card,
body.page-topup .topup-side-card {
        overflow: hidden;
    }

    body.page-topup .topup-card-body {
        padding: clamp(1.1rem, 3vw, 1.8rem);
    }

    body.page-topup .topup-icon-box,
body.page-topup .summary-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
        width: 46px;
        height: 46px;
        border-radius: 16px;
        color: var(--topup-primary);
        background: var(--topup-primary-soft);
        font-size: 1.2rem;
    }

    body.page-topup .payment-method-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: .75rem;
    }

    body.page-topup .payment-option {
        display: flex;
        align-items: center;
        gap: .8rem;
        width: 100%;
        padding: .95rem;
        cursor: pointer;
        user-select: none;
        box-shadow: none;
        transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
    }

    body.page-topup .payment-option:hover,
body.page-topup .payment-option.is-selected {
        transform: translateY(-1px);
        border-color: rgba(37, 99, 235, .55);
        background: linear-gradient(180deg, rgba(37, 99, 235, .08), rgba(255, 255, 255, .98));
        box-shadow: 0 14px 30px rgba(37, 99, 235, .10);
    }

    body.page-topup .payment-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        color: var(--topup-primary);
        background: var(--topup-primary-soft);
        font-size: 1.1rem;
        flex: 0 0 auto;
    }

    body.page-topup .payment-title {
        color: var(--topup-dark);
        font-weight: 800;
        line-height: 1.2;
    }

    body.page-topup .payment-subtitle {
        color: var(--topup-muted);
        font-size: .84rem;
        line-height: 1.25;
    }

    body.page-topup .payment-radio {
        margin-left: auto;
        width: 1.12rem;
        height: 1.12rem;
    }

    body.page-topup .amount-box {
        border: 1px solid var(--topup-border);
        border-radius: 18px;
        background: #fff;
        overflow: hidden;
    }

    body.page-topup .amount-box .input-group-text,
body.page-topup .amount-box .form-control {
        border: 0;
        box-shadow: none;
    }

    body.page-topup .amount-box .input-group-text {
        min-width: 62px;
        justify-content: center;
        color: var(--topup-primary);
        background: var(--topup-primary-soft);
        font-weight: 800;
    }

    body.page-topup .amount-box .form-control {
        min-height: 56px;
        font-size: 1.25rem;
        font-weight: 800;
        color: var(--topup-dark);
    }

    body.page-topup .quick-amount-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .6rem;
    }

    body.page-topup .quick-amount-btn {
        border-radius: 999px;
        padding: .65rem .45rem;
        color: var(--topup-dark);
        background: #fff;
        box-shadow: none;
        font-size: .88rem;
        font-weight: 800;
        transition: border-color .18s ease, background .18s ease, transform .18s ease;
    }

    body.page-topup .quick-amount-btn:hover,
body.page-topup .quick-amount-btn.is-active {
        transform: translateY(-1px);
        color: var(--topup-primary);
        border-color: rgba(37, 99, 235, .5);
        background: var(--topup-primary-soft);
    }

    body.page-topup .alert {
        border: 0;
        border-radius: 18px;
    }

    body.page-topup .alert-success {
        color: #166534;
        background: var(--topup-success-soft);
    }

    body.page-topup .alert-danger {
        color: #991b1b;
        background: var(--topup-danger-soft);
    }

    body.page-topup .btn-topup-primary,
body.page-topup .btn-brand {
        border: 0;
        border-radius: 999px;
        color: #fff;
        background: linear-gradient(135deg, var(--topup-primary), #0ea5e9);
        box-shadow: 0 14px 28px rgba(37, 99, 235, .24);
    }

    body.page-topup .btn-topup-primary:hover,
body.page-topup .btn-brand:hover {
        color: #fff;
        background: linear-gradient(135deg, var(--topup-primary-dark), #0284c7);
        transform: translateY(-1px);
    }

    body.page-topup .summary-row {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
        padding: .8rem 0;
        border-bottom: 1px solid var(--topup-border);
    }

    body.page-topup .summary-row:last-child {
        border-bottom: 0;
    }

    body.page-topup .summary-label {
        color: var(--topup-muted);
        font-size: .9rem;
    }

    body.page-topup .summary-value {
        color: var(--topup-dark);
        font-weight: 800;
        text-align: right;
    }

    @media (min-width: 992px) {
        body.page-topup .topup-side-card {
            position: sticky;
            top: 1rem;
        }
    }

    @media (max-width: 767.98px) {
        body.page-topup .topup-shell {
            padding-inline: .15rem;
        }

        body.page-topup .topup-hero {
            border-radius: 20px;
            padding: 1.1rem;
        }

        body.page-topup .topup-hero h1 {
            font-size: 1.3rem;
            letter-spacing: -.02em;
        }

        body.page-topup .topup-hero p,
body.page-topup .payment-subtitle,
body.page-topup .form-text,
body.page-topup .summary-label,
body.page-topup .summary-value {
            font-size: .82rem;
        }

        body.page-topup .topup-card,
body.page-topup .topup-side-card,
body.page-topup .payment-option {
            border-radius: 18px;
        }

        body.page-topup .topup-card-body {
            padding: 1rem;
        }

        body.page-topup .topup-icon-box,
body.page-topup .summary-icon {
            width: 40px;
            height: 40px;
            border-radius: 14px;
            font-size: 1.05rem;
        }

        body.page-topup .payment-option {
            padding: .82rem;
            gap: .65rem;
        }

        body.page-topup .payment-icon {
            width: 38px;
            height: 38px;
            border-radius: 13px;
            font-size: 1rem;
        }

        body.page-topup .payment-title,
body.page-topup .form-label {
            font-size: .93rem;
        }

        body.page-topup .amount-box .input-group-text {
            min-width: 56px;
            font-size: .95rem;
        }

        body.page-topup .amount-box .form-control {
            min-height: 52px;
            font-size: 1.05rem;
        }

        body.page-topup .quick-amount-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        body.page-topup .quick-amount-btn {
            font-size: .85rem;
            padding: .62rem .4rem;
        }

        body.page-topup .btn-topup-primary,
body.page-topup .btn-brand {
            font-size: .95rem;
            padding-block: .85rem;
        }
    }

/* tutorial */
body.page-tutorial .tutorial-page {
        --tutorial-border: rgba(15, 23, 42, .08);
        --tutorial-soft: #f8fafc;
        --tutorial-dark: #0f172a;
        --tutorial-muted: #64748b;
        max-width: 1120px;
        margin: 0 auto;
    }
    body.page-tutorial .tutorial-hero {
        background: linear-gradient(135deg, rgba(13, 110, 253, .10), rgba(13, 202, 240, .08));
        border: 1px solid var(--tutorial-border);
        border-radius: 24px;
        padding: 24px;
        box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
    }
    body.page-tutorial .tutorial-icon-box {
        width: 48px;
        height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 16px;
        background: #fff;
        color: var(--bs-primary);
        box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
        flex: 0 0 auto;
    }
    body.page-tutorial .tutorial-title {
        color: var(--tutorial-dark);
        letter-spacing: -.02em;
    }
    body.page-tutorial .tutorial-subtitle {
        color: var(--tutorial-muted);
        max-width: 620px;
    }
    body.page-tutorial .tutorial-lang-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    body.page-tutorial .tutorial-lang-scroll::-webkit-scrollbar { display: none; }
    body.page-tutorial .tutorial-lang-btn {
        border-radius: 999px !important;
        white-space: nowrap;
        font-weight: 700;
        padding: .45rem .75rem;
    }
    body.page-tutorial .tutorial-method-card {
        border: 1px solid var(--tutorial-border);
        border-radius: 24px;
        background: #fff;
        box-shadow: 0 14px 38px rgba(15, 23, 42, .06);
        height: 100%;
        overflow: hidden;
    }
    body.page-tutorial .tutorial-method-head {
        padding: 20px 20px 12px;
        border-bottom: 1px solid var(--tutorial-border);
    }
    body.page-tutorial .tutorial-method-icon {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: var(--tutorial-soft);
        font-size: 1.2rem;
        flex: 0 0 auto;
    }
    body.page-tutorial .tutorial-step-list {
        list-style: none;
        counter-reset: tutorial-step;
        margin: 0;
        padding: 18px 20px 20px;
    }
    body.page-tutorial .tutorial-step-list li {
        counter-increment: tutorial-step;
        display: grid;
        grid-template-columns: 34px 1fr;
        gap: 12px;
        align-items: start;
        padding: 12px 0;
        color: #334155;
        font-size: .95rem;
        line-height: 1.45;
        border-bottom: 1px dashed rgba(15, 23, 42, .10);
    }
    body.page-tutorial .tutorial-step-list li:last-child { border-bottom: 0; }
    body.page-tutorial .tutorial-step-list li::before {
        content: counter(tutorial-step);
        width: 30px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: rgba(13, 110, 253, .10);
        color: var(--bs-primary);
        font-weight: 800;
        font-size: .85rem;
    }
    body.page-tutorial .tutorial-note {
        border: 1px solid rgba(255, 193, 7, .35);
        border-radius: 22px;
        background: rgba(255, 243, 205, .65);
        padding: 18px;
    }
    body.page-tutorial .tutorial-modal-card {
        border: 0;
        border-radius: 24px;
        overflow: hidden;
    }
    body.page-tutorial .tutorial-language-choice {
        border-radius: 18px;
        font-weight: 800;
    }
    @media (max-width: 767.98px) {
        body.page-tutorial .tutorial-hero {
            padding: 18px;
            border-radius: 20px;
        }
        body.page-tutorial .tutorial-title {
            font-size: 1.28rem;
        }
        body.page-tutorial .tutorial-subtitle {
            font-size: .9rem;
        }
        body.page-tutorial .tutorial-icon-box {
            width: 42px;
            height: 42px;
            border-radius: 14px;
        }
        body.page-tutorial .tutorial-method-head {
            padding: 16px 16px 10px;
        }
        body.page-tutorial .tutorial-step-list {
            padding: 12px 16px 16px;
        }
        body.page-tutorial .tutorial-step-list li {
            grid-template-columns: 30px 1fr;
            gap: 10px;
            font-size: .88rem;
            padding: 10px 0;
        }
        body.page-tutorial .tutorial-step-list li::before {
            width: 28px;
            height: 28px;
            font-size: .8rem;
        }
        body.page-tutorial .tutorial-note {
            padding: 15px;
            border-radius: 18px;
            font-size: .9rem;
        }
    }

/* create */
body.page-create {
        --create-primary: #2563eb;
        --create-primary-dark: #1d4ed8;
        --create-success: #16a34a;
        --create-warning: #f59e0b;
        --create-danger: #dc2626;
        --create-ink: #0f172a;
        --create-muted: #64748b;
        --create-soft: #f8fafc;
        --create-border: #e2e8f0;
        --create-radius-lg: 24px;
        --create-radius-md: 18px;
    }

    body.page-create .create-page-shell {
        max-width: 1180px;
        margin: 0 auto;
    }

    body.page-create .create-hero {
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(37, 99, 235, .12);
        border-radius: var(--create-radius-lg);
        background:
            radial-gradient(circle at top right, rgba(37, 99, 235, .18), transparent 32%),
            linear-gradient(135deg, #ffffff 0%, #f8fbff 50%, #eef6ff 100%);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .08);
    }

    body.page-create .create-hero::after {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        background: rgba(37, 99, 235, .08);
        pointer-events: none;
    }

    body.page-create .create-hero-icon {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: linear-gradient(135deg, var(--create-primary), #60a5fa);
        box-shadow: 0 12px 26px rgba(37, 99, 235, .25);
        flex: 0 0 auto;
    }

    body.page-create .create-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(37, 99, 235, .08);
        color: var(--create-primary-dark);
        font-size: .78rem;
        font-weight: 700;
        letter-spacing: .02em;
    }

    body.page-create .create-title {
        color: var(--create-ink);
        font-weight: 800;
        letter-spacing: -.03em;
    }

    body.page-create .create-subtitle {
        color: var(--create-muted);
        max-width: 720px;
    }

    body.page-create .create-main-card,
body.page-create .create-side-card {
        border: 1px solid var(--create-border);
        border-radius: var(--create-radius-lg);
        box-shadow: 0 18px 45px rgba(15, 23, 42, .07);
        overflow: hidden;
        background: #fff;
    }

    body.page-create .create-card-header {
        padding: 1.15rem 1.25rem;
        border-bottom: 1px solid var(--create-border);
        background: linear-gradient(180deg, #ffffff, #f8fafc);
    }

    body.page-create .create-card-body {
        padding: 1.25rem;
    }

    body.page-create .form-label {
        font-size: .9rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: .45rem;
    }

    body.page-create .form-control,
body.page-create .form-select {
        border-radius: 14px;
        border-color: var(--create-border);
        min-height: 46px;
        font-size: .95rem;
        box-shadow: none !important;
    }

    body.page-create .form-control:focus,
body.page-create .form-select:focus {
        border-color: rgba(37, 99, 235, .55);
        box-shadow: 0 0 0 .2rem rgba(37, 99, 235, .10) !important;
    }

    body.page-create .input-help {
        font-size: .78rem;
        color: var(--create-muted);
        margin-top: .35rem;
    }

    body.page-create .quota-option-label,
body.page-create .mode-option-label,
body.page-create .wallet-option-label {
        display: block;
        height: 100%;
        margin: 0;
    }

    body.page-create .quota-type-card {
        border-radius: 20px !important;
        border: 1.5px solid var(--create-border) !important;
        min-height: 142px;
        transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
        cursor: pointer;
        background: #fff;
    }

    body.page-create .quota-type-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 30px rgba(15, 23, 42, .08);
        border-color: rgba(37, 99, 235, .35) !important;
    }

    body.page-create .quota-icon {
        width: 46px;
        height: 46px;
        border-radius: 16px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto .55rem;
        background: #f1f5f9;
        font-size: 1.45rem;
    }

    body.page-create .quota-card-title {
        font-size: .96rem;
        font-weight: 800;
        color: var(--create-ink);
    }

    body.page-create .quota-card-text {
        font-size: .8rem;
        color: var(--create-muted);
    }

    body.page-create .soft-alert {
        border: 1px solid var(--create-border);
        border-radius: 18px;
        background: #f8fafc;
    }

    body.page-create .soft-alert-info {
        border-color: rgba(37, 99, 235, .18);
        background: rgba(37, 99, 235, .06);
    }

    body.page-create .mode-card,
body.page-create .wallet-card {
        border-radius: 16px !important;
        border: 1px solid var(--create-border) !important;
        padding: .95rem 1rem;
        transition: border-color .18s ease, background .18s ease, box-shadow .18s ease;
    }

    body.page-create .mode-card:hover,
body.page-create .wallet-card:hover {
        border-color: rgba(37, 99, 235, .35) !important;
        background: #f8fbff;
    }

    body.page-create .cost-summary {
        border: 1px solid rgba(37, 99, 235, .14);
        border-radius: 20px;
        background:
            radial-gradient(circle at top right, rgba(37, 99, 235, .10), transparent 40%),
            #f8fafc;
        padding: 1rem;
    }

    body.page-create .cost-summary-title {
        display: flex;
        align-items: center;
        gap: .5rem;
        font-size: .9rem;
        font-weight: 800;
        color: var(--create-ink);
        margin-bottom: .75rem;
    }

    body.page-create .cost-row {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        padding: .35rem 0;
        color: #334155;
        font-size: .9rem;
    }

    body.page-create .cost-row span:last-child {
        font-weight: 700;
        color: var(--create-ink);
        text-align: right;
    }

    body.page-create .cost-total {
        padding-top: .65rem;
        margin-top: .45rem;
        border-top: 1px dashed #cbd5e1;
        font-weight: 800;
        color: var(--create-ink);
    }

    body.page-create .create-btn-primary,
body.page-create .btn-brand {
        border: 0;
        border-radius: 16px;
        min-height: 48px;
        font-weight: 800;
        color: #fff !important;
        background: linear-gradient(135deg, var(--create-primary), var(--create-primary-dark));
        box-shadow: 0 14px 28px rgba(37, 99, 235, .25);
    }

    body.page-create .create-btn-primary:hover,
body.page-create .btn-brand:hover {
        filter: brightness(.97);
        transform: translateY(-1px);
    }

    body.page-create .create-btn-secondary {
        border-radius: 16px;
        min-height: 44px;
        font-weight: 700;
    }

    body.page-create .result-box {
        border: 1px solid rgba(22, 163, 74, .22);
        border-radius: var(--create-radius-lg);
        background: linear-gradient(135deg, rgba(22, 163, 74, .08), rgba(37, 99, 235, .05));
        padding: 1.25rem;
    }

    body.page-create .empty-state-box {
        border: 1px solid rgba(245, 158, 11, .25);
        border-radius: var(--create-radius-lg);
        background: rgba(245, 158, 11, .08);
        padding: 1.25rem;
    }

    body.page-create .create-submit-area {
        padding-top: .25rem;
    }

    body.page-create .create-submit-area .small {
        line-height: 1.35;
    }

    body.page-create .side-metric {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: .75rem 0;
        border-bottom: 1px solid #eef2f7;
    }

    body.page-create .side-metric:last-child {
        border-bottom: 0;
    }

    body.page-create .side-metric-label {
        color: var(--create-muted);
        font-size: .82rem;
        font-weight: 700;
    }

    body.page-create .side-metric-value {
        color: var(--create-ink);
        font-size: .95rem;
        font-weight: 800;
        text-align: right;
    }

    body.page-create .modal-content {
        border: 0;
        border-radius: 24px;
        box-shadow: 0 22px 55px rgba(15, 23, 42, .18);
        overflow: hidden;
    }

    body.page-create .modal-header {
        border-bottom-color: var(--create-border);
    }

    body.page-create .progress {
        border-radius: 999px;
        background: #e2e8f0;
    }

    body.page-create .progress-bar {
        border-radius: 999px;
    }

    @media (min-width: 992px) {
        body.page-create .create-side-card {
            position: sticky;
            top: 1rem;
        }

        body.page-create .create-card-body {
            padding: 1.5rem;
        }
    }

    @media (max-width: 767.98px) {
        body.page-create .create-page-shell {
            padding-inline: .15rem;
        }

        body.page-create .create-hero {
            border-radius: 20px;
        }

        body.page-create .create-hero .p-4 {
            padding: 1rem !important;
        }

        body.page-create .create-hero-icon {
            width: 42px;
            height: 42px;
            border-radius: 14px;
        }

        body.page-create .create-title {
            font-size: 1.25rem;
            line-height: 1.25;
        }

        body.page-create .create-subtitle {
            font-size: .86rem;
        }

        body.page-create .create-eyebrow {
            font-size: .7rem;
            padding: .28rem .55rem;
        }

        body.page-create .create-main-card,
body.page-create .create-side-card {
            border-radius: 20px;
        }

        body.page-create .create-card-header {
            padding: .95rem 1rem;
        }

        body.page-create .create-card-header h2,
body.page-create .create-card-header h5 {
            font-size: .98rem;
        }

        body.page-create .create-card-body {
            padding: 1rem;
        }

        body.page-create .form-label {
            font-size: .84rem;
        }

        body.page-create .form-control,
body.page-create .form-select {
            min-height: 43px;
            font-size: .88rem;
            border-radius: 13px;
        }

        body.page-create .quota-type-card {
            min-height: 126px;
            padding: .85rem .55rem !important;
            border-radius: 17px !important;
        }

        body.page-create .quota-icon {
            width: 40px;
            height: 40px;
            border-radius: 14px;
            font-size: 1.2rem;
        }

        body.page-create .quota-card-title {
            font-size: .86rem;
        }

        body.page-create .quota-card-text,
body.page-create .input-help,
body.page-create .small {
            font-size: .74rem;
        }

        body.page-create .badge {
            font-size: .68rem;
        }

        body.page-create .mode-card,
body.page-create .wallet-card {
            padding: .8rem;
            border-radius: 15px !important;
        }

        body.page-create .cost-summary {
            padding: .9rem;
            border-radius: 18px;
        }

        body.page-create .cost-row {
            font-size: .82rem;
        }

        body.page-create .create-btn-primary {
            min-height: 46px;
            font-size: .9rem;
            border-radius: 15px;
        }

        body.page-create .modal-title {
            font-size: 1rem;
        }

        body.page-create .modal-body {
            font-size: .88rem;
        }
    }
