/* ===============================
   ROOT VARIABLES
================================ */
:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #7c3aed;
  --bg: #ffffff;
  --card: #f8fafc;
  --text: #0f172a;
  --text-light: #64748b;
  --border: #e2e8f0;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --gradient: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  --gradient-light: linear-gradient(135deg, #dbeafe 0%, #ede9fe 100%);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ===============================
   GLOBAL RESET
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===============================
   CONTAINER
================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===============================
   HEADER / NAVBAR
================================ */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 10px;
}

/* LOGO */
.logo-link {
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  cursor: pointer;
}

.logo-icon {
  font-size: 1.8rem;
}

.logo-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-highlight {
  color: var(--primary);
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 5px;
}

.nav-btn {
  border: 2px solid transparent;
  border-radius: 25px;
  background: transparent;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.1s ease;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
  transform: translateY(-1px);
  border-radius: 25px;
}

.nav-btn.active {
    /* background: var(--gradient); */
    color: #2563eb;
    font-weight: 600;
    box-shadow: var(--shadow);
    border: 2px solid #2563eb;
    border-radius: 25px;
}

/* ===============================
   HAMBURGER MENU
================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--text);
  border-radius: 3px;
  transition: 0.3s;
}

/* ===============================
   PAGE SECTIONS
================================ */
.page-section {
  display: none;
  min-height: calc(100vh - 200px);
  padding: 60px 0;
  animation: fadeIn 0.5s ease;
}

.page-section.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.page-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
}

/* ===============================
   HOMEPAGE
================================ */
/* Hero Section */
.hero-section {
  text-align: center;
  padding: 80px 20px;
  background: var(--gradient-light);
  border-radius: 25px;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient);
  opacity: 0.05;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.hero-highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-btn {
    padding: 16px 32px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-btn.primary {
  background: var(--gradient);
  color: white;
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.hero-btn.secondary {
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.hero-btn.secondary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
}

/* Featured Tools */
.featured-tools {
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 50px;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tool-card {
  background: var(--card);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.tool-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.tool-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text);
}

.tool-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.tool-btn {
  background: var(--gradient);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tool-btn:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

/* Why Choose Us */
.why-us {
  margin-bottom: 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.benefit {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.benefit h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--text);
}

.benefit p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===============================
   TOOLS PAGE
================================ */
.tools-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.tool-tab-btn {
  padding: 16px 24px;
  background: var(--card);
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
}

.tool-tab-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

.tool-tab-btn.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
    border-radius: 30px;
}

.tool-container {
  display: none;
  animation: slideUp 0.4s ease;
}

.tool-container.active {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Back to Home */
.back-to-home {
  text-align: center;
  margin: 40px 0;
}

.back-btn {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
}

.back-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ===============================
   TOOL INTERFACE (Compressor/Converters)
================================ */
.subtitle {
  color: var(--text-light);
  margin-bottom: 32px;
  font-size: 1.1rem;
}

/* Upload Area */
.upload-area {
  background: var(--card);
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 60px 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}

.upload-area:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.upload-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.upload-highlight {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

/* Status Banner */
.status-banner {
  padding: 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 20px;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

.status-banner.warning {
  background: #fffbeb;
  color: #92400e;
  border: 1px solid #fde68a;
}

/* Controls Card */
.controls-card {
  background: var(--card);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  animation: slideUp 0.4s ease;
}

/* Quality Slider */
.settings {
  margin-bottom: 32px;
}

.label-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.badge {
  background: var(--gradient);
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 10px;
  background: linear-gradient(
    to right,
    var(--primary) var(--progress),
    #e2e8f0 var(--progress)
  );
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--card);
  border: 3px solid var(--primary);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: all 0.2s;
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

/* Preview Grid */
.preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.preview-box {
  background: white;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease;
}

.preview-box:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.badge-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.badge-label.highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

.img-display {
  width: 100%;
  height: 220px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 16px;
  padding: 10px;
}

.img-display img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.size-info {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
  text-align: center;
}

/* Primary Button */
.btn-primary {
  width: 100%;
  background: var(--gradient);
  color: white;
  border: none;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-icon {
  font-size: 1.2rem;
}

/* Loading State */
.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===============================
   INFO PAGES (Privacy, About, Contact)
================================ */
.info-content {
  max-width: 900px;
  margin: 0 auto;
}

.info-content h2 {
  font-size: 2rem;
  margin: 0px 0 20px;
  color: var(--text);
}

.info-content h3 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
  color: var(--text);
}

.info-content h4 {
  font-size: 1.2rem;
  margin: 20px 0 10px;
  color: var(--text);
}

.info-content p {
  color: var(--text-light);
  line-height: 1.7;
}

.info-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.info-content li {
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.6;
}

/* Privacy Features */
.privacy-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.privacy-feature {
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.privacy-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.privacy-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 30px 0;
}

.feature {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

/* Mission Statement */
.mission-statement {
  text-align: center;
  margin: 40px 0;
}

.mission-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.tagline-box {
  background: var(--gradient-light);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
  border: 1px solid var(--border);
}

.tagline {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary);
  font-style: italic;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.contact-method {
  background: white;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--primary);
}

.contact-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

/* FAQ */
.faq-section {
  margin: 60px 0 40px;
}

.faq {
  margin-top: 20px;
}

.faq-item {
  background: var(--card);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border-left: 4px solid var(--primary);
}

.faq-item h4 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* Disclaimer */
.disclaimer {
  background: #fef3c7;
  padding: 25px;
  border-radius: 12px;
  margin: 40px 0;
  border: 1px solid #fbbf24;
  display: flex;
  align-items: center;
  gap: 15px;
}

.disclaimer-icon {
  font-size: 24px;
}

/* Last Updated */
.last-updated {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===============================
   FOOTER
================================ */
footer {
  background: var(--text);
  color: white;
  padding: 60px 0 30px;
  margin-top: 80px;
}

.footer-content {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 1.8rem;
  font-weight: 700;
}

.footer-tagline {
  color: #cbd5e1;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.footer-links {
  margin-bottom: 30px;
}

.footer-link {
  background: none;
  border: none;
  color: #94a3b8;
  font-size: 0.95rem;
  cursor: pointer;
  transition: color 0.3s;
  padding: 0 5px;
}

.footer-link:hover {
  color: white;
}

.copyright {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-top: 30px;
}

/* ===============================
   CUSTOM CURSOR
================================ */
/* .cursor-dot,
.cursor-outline {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
}

.cursor-outline {
  width: 40px;
  height: 40px;
  border: 2px solid var(--primary);
  transition: width 0.7s, height 0.3s, border-color 0.3s;
  
}

body:hover .cursor-dot,
body:hover .cursor-outline {
  opacity: 1;
}

.cursor-hover .cursor-outline {
  width: 20px;
  height: 20px;
  background-color: rgba(37, 100, 235, 0.185);
  
} */

/* @media (min-width: 1025px) {
  body, button, a, .upload-area, input {
    cursor: none !important;
  }
} */

/* ===============================
   UTILITIES
================================ */
.hidden {
  display: none !important;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .hero-title {
    font-size: 2.8rem;
  }
  
  .page-title {
    font-size: 2.3rem;
    margin-top: 20px;
}
.info-content h2 {
  margin-top: 20px;
}
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 999;
  }

 .nav-links.show {
    margin-top: 10px;
    display: flex;
    margin: 30px 25px;
    border: 1px solid;
    border-radius: 25px;
    border-color: #0000001c;
}

  .nav-btn {
    width: 100%;
    text-align: left;
    padding: 16px 20px;
    border-radius: 8px;
    margin: 5px 0px;
}

  .hero-section {
    padding: 50px 20px;
    margin-bottom: 50px;
    margin-top: 25px;
}

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .tools-grid,
  .benefits-grid,
  .privacy-features,
  .features-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .tools-tabs {
    flex-direction: column;
  }

  .tool-tab-btn {
    width: 100%;
    justify-content: center;
  }

  .upload-area {
    padding: 40px 20px 70px;
  }

  .controls-card {
    padding: 24px;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }
  
  .page-section {
    padding: 0px 0px;
  }
  .why-us {
    margin-bottom: 0px;
}
span.pdf-name {
    width: 270px;
}
.toast {
  position: fixed;
  top: 170px;
  right: 20px;
  background: none;
  color: #4f46e5;
  padding: 12px 18px;
  border-radius: 8px;
  display: block;
  z-index: 9999;
}

}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .logo {
    font-size: 1.3rem;
  }

  .upload-area {
    padding: 30px 15px;
  }

  .upload-icon {
    font-size: 36px;
  }
}
.pdf-preview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pdf-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #f8faff;
  border-radius: 12px;
}

.pdf-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.pdf-left img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.pdf-left span {
  font-size: 14px;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.remove-pdf {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: none;
  background: #ff4d4f;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  flex-shrink: 0;
}


/* Mobile safety */
@media (max-width: 480px) {
  .pdf-item {
    align-items: flex-start;
  }

  .remove-pdf {
    margin-top: 4px;
  }
  @media (max-width: 480px) {
  .pdf-left span {
    font-size: 13px;
  }
}

}

.pdf-item button {
    margin-left: auto;
    background: #bab0b02b;
    color: #2537d2;
    font-weight: 700;
    border-radius: 50%;
    width: 25px;
    font-size: 12px;
    height: 25px;
    cursor: pointer;
}

.btn-secondary {
    width: 100%;
    margin-bottom: 12px;
    padding: 12px;
    border-radius: 12px;
    background: #eef2ff;
    border: 2px dashed #5b6cff;
    color: #4f46e5;
    font-weight: 600;
    cursor: pointer;
    margin-top: 25px;
}

.toast {
  position: fixed;
  display: block;
}