html, body {
	height: 100%;
	margin: 0;
  }
  
  body {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
  }
  
  main {
	flex: 1 0 auto;
  }

  input:focus {
    outline: none; /* Remove the default outline */
}

input::placeholder {
  font-size: 0.875rem;
  opacity: 0.5;
}
  iframe {
  display: initial;
  width: 100%;
  }
/* Cancel out all Enhance's focus and validation styles */
:is(a, button, input, textarea, summary):focus:not(:focus-visible),
:is(a, button, input, textarea, summary):focus-visible,
:is(a, button, input, textarea, summary):not(:focus):not(:placeholder-shown):invalid {
  outline: none;
  outline-offset: 0;
  box-shadow: none;
}

.inline-icon {
    display: inline-block; /* Ensures the icon behaves like an inline element */
    vertical-align: middle; /* Aligns the icon vertically with the text */
}

.ml-auto{margin-left:auto;}
.mr-auto{margin-right:auto;}

.radius12{border-radius:5px;}

.no-h-underline:hover{text-decoration:none;}

.bg-h11:hover{opacity:0.75;}

/* ===== SPECTACULAR LANDING PAGE DESIGN ===== */

/* Hero Section Gradient Background */
.hero-gradient {
  background: linear-gradient(135deg, 
    hsl(var(--primary-h), var(--primary-s), 95%) 0%,
    hsl(var(--primary-h), var(--primary-s), 85%) 50%,
    hsl(var(--primary-h), var(--primary-s), 90%) 100%);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px; /* Account for floating header */
}

.hero-gradient::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, 
    transparent 0%, 
    hsla(var(--primary-h), var(--primary-s), 100%, 0.1) 50%, 
    transparent 100%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Premium Button Styling */
.btn-premium {
  background: linear-gradient(135deg, 
    hsl(var(--primary-h), var(--primary-s), 55%) 0%,
    hsl(var(--primary-h), var(--primary-s), 45%) 100%);
  box-shadow: 0 4px 14px hsla(var(--primary-h), var(--primary-s), 50%, 0.4);
  border: none;
  transition: all 0.3s ease;
  transform: translateY(0);
}

.btn-premium:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px hsla(var(--primary-h), var(--primary-s), 50%, 0.5);
}

.btn-secondary {
  background: white;
  color: hsl(var(--primary-h), var(--primary-s), 50%);
  border: 2px solid hsl(var(--primary-h), var(--primary-s), 50%);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: hsl(var(--primary-h), var(--primary-s), 50%);
  color: white;
  transform: translateY(-1px);
}

/* Professional Card Styling */
.card-elevated {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 24px hsla(0, 0%, 0%, 0.06);
  border: 1px solid hsla(0, 0%, 0%, 0.04);
  transition: all 0.3s ease;
  padding: var(--space-3);
}

.card-elevated:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px hsla(0, 0%, 0%, 0.12);
}

/* Icon Styling */
.feature-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, 
    hsl(var(--primary-h), var(--primary-s), 95%) 0%,
    hsl(var(--primary-h), var(--primary-s), 85%) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-h), var(--primary-s), 50%);
  margin-bottom: var(--space-2);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: hsl(var(--primary-h), var(--primary-s), 50%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: var(--text-1);
  position: relative;
  z-index: 2;
}

/* Timeline Connection */
.timeline-step {
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, 
    hsl(var(--primary-h), var(--primary-s), 50%) 0%,
    hsl(var(--primary-h), var(--primary-s), 80%) 100%);
  z-index: 1;
}

@media (max-width: 768px) {
  .timeline-step:not(:last-child)::after {
    display: none;
  }
}

/* Section Backgrounds */
.section-light {
  background: linear-gradient(180deg, 
    hsl(var(--primary-h), var(--primary-s), 98%) 0%,
    white 100%);
}

.section-accent {
  background: hsl(var(--primary-h), var(--primary-s), 50%);
  color: white;
}

/* Image Placeholder Styling */
.image-placeholder {
  background: linear-gradient(135deg, 
    hsl(var(--secondary-h), var(--secondary-s), 90%) 0%,
    hsl(var(--secondary-h), var(--secondary-s), 95%) 100%);
  border: 2px dashed hsl(var(--secondary-h), var(--secondary-s), 70%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--secondary-h), var(--secondary-s), 60%);
  font-weight: 500;
  min-height: 300px;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: var(--space-3);
  box-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.08);
  border: 1px solid hsl(var(--primary-h), var(--primary-s), 90%);
  position: relative;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, 
    hsl(var(--primary-h), var(--primary-s), 50%) 0%,
    hsl(var(--success-h), var(--success-s), 50%) 100%);
  border-radius: 16px 16px 0 0;
}

/* Trust Section */
.trust-badge {
  background: hsl(var(--success-h), var(--success-s), 95%);
  color: hsl(var(--success-h), var(--success-s), 30%);
  padding: var(--space-1) var(--space-2);
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: var(--space-0);
  font-weight: 500;
}

/* Responsive Grid Helpers */
.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-3);
}

.grid-auto-fit-sm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-2);
}

/* Animation Classes */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Enhanced Focus States */
.btn-premium:focus,
.btn-secondary:focus {
  outline: 2px solid hsl(var(--primary-h), var(--primary-s), 70%);
  outline-offset: 2px;
}

/* Hero Section Specific Styling */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-0);
  background: white;
  border: 1px solid var(--primary-200);
  border-radius: 24px;
  padding: var(--space-0) var(--space-2);
  margin-bottom: var(--space-3);
  font-size: var(--text--1);
  font-weight: 600;
  color: var(--primary-600);
  box-shadow: 0 2px 12px rgba(59, 130, 246, 0.1);
}

.hero-title {
  font-size: clamp(3rem, 15vw, 10rem);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: var(--space-3);
  background: linear-gradient(135deg, 
    #1e293b 0%, 
    var(--primary-500) 50%, 
    #7c3aed 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: var(--text-1);
  color: var(--secondary-600);
  line-height: 1.5;
  margin-bottom: var(--space-4);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle .highlight {
  color: var(--primary-500);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  background: linear-gradient(135deg, 
    var(--primary-600) 0%,
    var(--primary-700) 100%);
  color: white;
  font-weight: 700;
  font-size: var(--text-0);
  padding: var(--space-2) var(--space-3);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
  transition: all 0.3s ease;
  border: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
  text-decoration: none;
  background: linear-gradient(135deg, 
    var(--primary-500) 0%,
    var(--primary-600) 100%);
}

.hero-example {
  font-size: var(--text--1);
  color: var(--secondary-500);
  margin: 0;
}

.demo-link {
  color: var(--primary-500);
  text-decoration: underline;
  font-weight: 500;
}

.demo-link:hover {
  color: var(--primary-600);
}

/* Floating Header */
.header-floating {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.header-floating:hover {
  background: rgba(255, 255, 255, 0.98);
}

/* Header Navigation Improvements */
.header-floating nav {
  max-width: 1200px;
  margin: 0 auto;
}

/* Improve login button styling for floating header */
.header-floating .border-solid {
  background: var(--primary-500);
  color: white;
  border: 1px solid var(--primary-500);
  transition: all 0.3s ease;
}

.header-floating .border-solid:hover {
  background: var(--primary-600);
  transform: translateY(-1px);
}

/* Brand Logo Styling */
.brand-logo {
  text-decoration: none;
  color: var(--primary-600);
  transition: all 0.3s ease;
}

.brand-logo:hover {
  color: var(--primary-700);
  transform: scale(1.05);
}

.brand-text {
  background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
  
  /* BACKGROUND */
.bg-p0{background-color:#000000;}
.bg-p1{background-color:#ffffff}
.bg-p2{background-color:#f9fafb;}
.bg-p3{background-color:#020917;}
.bg-p4{background-color:#FF3C00;}
.bg-p5{background-color:#0075F2;}
.bg-p6{background-color:#5865F2;}
.bg-g0{background-color:#FBFBFB;}
.bg-g1{background-color:#E5E5E5;}
.bg-g2{background-color:#CFCFCF;}
.bg-g3{background-color:#BABABA;}
.bg-g4{background-color:#A4A4A4;}
.bg-g5{background-color:#8E8E8E;}
.bg-g6{background-color:#797979;}
.bg-g7{background-color:#636363;}
.bg-g8{background-color:#4D4D4D;}
.bg-g9{background-color:#FFEFEB;}
.bg-g10{background-color:#dc143c;} /* #crimson */
.bg-g11{background-color:#EBFEF8;} /* #crimson */
.bg-h0:hover{background-color:#000000;}
.bg-h1:hover{background-color:#ffffff;}
.bg-h2:hover{background-color:#0A0A0A;}
.bg-h3:hover{background-color:#FF3C00;}
.bg-h4:hover{background-color:#000000;}
.bg-h5:hover{background-color:#000000;}
.bg-a0:active{background-color:#000000;}
.bg-a0.active{background-color:#000000;}
.bg-a1:active{background-color:var(--a1);}
.bg-a1.active{background-color:var(--a1);}
.bg-d0:disabled{background-color:var(--d0);}
.bg-d1:disabled{background-color:var(--d1);}
.bg-lin{background: linear-gradient(135deg, #FF3C00, #FF8A00);}
.bg-can{background: linear-gradient(135deg, #020917, #020917);}
.bg-warning{background-color:#FFE0D6;}
/* COLOR */
.text-p0{color:#000000;}
.text-p1{color:#ffffff;}
.text-p2{color:#E0D6C8;}
.text-p3{color:#020917;}
.text-p4{color:#FF3C00;}
.text-p5{color:#0075F2;}
.text-p6{color:#5865F2;}
.text-g0{color:#FBFBFB;}
.text-g1{color:#E5E5E5;}
.text-g2{color:#CFCFCF;}
.text-g3{color:#BABABA;}
.text-g4{color:#A4A4A4;}
.text-g5{color:#8E8E8E;}
.text-g6{color:#797979;}
.text-g7{color:#636363;}
.text-g8{color:#4D4D4D;}
.text-g9{color:#383838;}
.text-g10{color:#dc143c;}
.text-g11{color:#059669;}
.text-h0:hover{color:#000000;}/* Medium Aquamarine */
.text-h1:hover{color:#ffffff;}/* Bright Navy Blue */
.text-h2:hover{color:#0A0A0A;}/* Royal Purple Hover */
.text-h3:hover{color:#020917;}/* Barbie Pink */
.text-h4:hover{color:#FF3C00;}/* Bittersweet Orange */
.text-h5:hover{color:#0075F2;}/* Minion Yellow */
.text-a0:active{color:#A4A4A4;}/* #A4A4A4 */
.text-a0.active{color:#A4A4A4;}/* #A4A4A4 */
.text-a1:active{color:var(--a1);}/* #8E8E8E */
.text-a1.active{color:var(--a1);}/* #8E8E8E */
.text-d0:disabled{color:var(--d0);}/* #797979 */
.text-d1:disabled{color:var(--d1);}/* #636363 */
.text-lin{color: linear-gradient(135deg, #FF3C00, #FF8A00);}

.opacity-50{opacity:0.50;}
.opacity-75{opacity:0.75;}
.opacity-100{opacity:1.0;}
.opacity-h75:hover{opacity:0.75;}
.opacity-h100:hover{opacity:1.0;}


/* UTILITY CLASSES */
.hidden{display:none;}
.animate-spin{animation:spin 1s linear infinite;}
.rounded-full{border-radius:50%;}
.h-8{height:2rem;}
.w-8{width:2rem;}
.mt2{margin-top:0.5rem;}
.mb2{margin-bottom:0.5rem;}
.mb3{margin-bottom:0.75rem;}
.mb4{margin-bottom:1rem;}
.mb6{margin-bottom:1.5rem;}
.inline-block{display:inline-block;}

/* PROFILE PAGE MINIMALIST STYLES */
.profile-card {
  background: #ffffff;
  border: 1px solid #f1f3f4;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.profile-avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 3px solid #f8f9fa;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.profile-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.profile-details h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.profile-details .username {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 1rem;
  font-weight: 500;
}

/* Verification badge */
.verification-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: #0075F2;
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.verification-badge svg {
  width: 12px;
  height: 12px;
}

.profile-form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: grid;
  gap: 0.5rem;
}

.form-label {
  font-weight: 500;
  color: #374151;
  font-size: 0.875rem;
}

.form-input {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  background-color: #ffffff;
  color: #374151;
  transition: border-color 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  background-color: #ffffff;
  color: #374151;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #FF3C00, #ff5722);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 60, 0, 0.3);
}

.btn-secondary {
  background: #f8f9fa;
  color: #374151;
  border: 1px solid #e5e7eb;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}

.btn-secondary:hover {
  background: #f1f3f4;
  border-color: #d1d5db;
}

.bio-section {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #FF3C00;
}

.messaging-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Two-column profile layout */
.profile-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

@media (min-width: 768px) {
  .profile-layout {
    grid-template-columns: 1fr 400px;
    align-items: start;
  }
}

.profile-info {
  display: grid;
  gap: 2rem;
}

.profile-sidebar {
  position: sticky;
  top: 2rem;
}

/* Social media links */
.social-links {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.social-links h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.social-link.twitter {
  background: #1DA1F2;
  color: white;
}

.social-link.twitter:hover {
  background: #0d8bd9;
  transform: translateY(-1px);
}

.social-link.instagram {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  color: white;
}

.social-link.instagram:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
}

.social-link.website {
  background: #374151;
  color: white;
}

.social-link.website:hover {
  background: #1f2937;
  transform: translateY(-1px);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* BORDER */
.border-solid{border-style:solid;}
.border-dashed{border-style:dashed;}
.border-dotted{border-style:dotted;}
.border-double{border-style:double;}
.border-none{border-style:none;}
.border-t-none{border-top:none;}
.border-r-none{border-right:none;}
.border-b-none{border-bottom:none;}
.border-b-solid{border-bottom:solid;}
.border-l-none{border-left:none;}

.border0{border-width:0px;}
.border-t0{border-top-width:0px;}
.border-r0{border-right-width:0px;}
.border-b0{border-bottom-width:0px;}
.border-l0{border-left-width:0px;}
.border1{border-width:1px;}
.border-t1{border-top-width:1px;}
.border-r1{border-right-width:1px;}
.border-b1{border-bottom-width:1px;}
.border-l1{border-left-width:1px;}
.border2{border-width:2px;}
.border-t2{border-top-width:2px;}
.border-r2{border-right-width:2px;}
.border-b2{border-bottom-width:2px;}
.border-l2{border-left-width:2px;}
.border3{border-width:4px;}
.border-t3{border-top-width:4px;}
.border-r3{border-right-width:4px;}
.border-b3{border-bottom-width:4px;}
.border-l3{border-left-width:4px;}
.border4{border-width:8px;}
.border-t4{border-top-width:8px;}
.border-r4{border-right-width:8px;}
.border-b4{border-bottom-width:8px;}
.border-l4{border-left-width:8px;}
.border5{border-width:16px;}
.border-t5{border-top-width:16px;}
.border-r5{border-right-width:16px;}
.border-b5{border-bottom-width:16px;}
.border-l5{border-left-width:16px;}
.border6{border-width:32px;}
.border-t6{border-top-width:32px;}
.border-r6{border-right-width:32px;}
.border-b6{border-bottom-width:32px;}
.border-l6{border-left-width:32px;}
.border-p0{border-color:#000000;}
.border-p1{border-color:#ffffff;}
.border-p2{border-color:#E5E5E5;}
.border-p3{border-color:#020917;}
.border-p4{border-color:#FF3C00;}
.border-p5{border-color:#0075F2;}
.border-g0{border-color:#FBFBFB;}
.border-g1{border-color:#E5E5E5;}
.border-g2{border-color:#CFCFCF;}
.border-g3{border-color:#BABABA;}
.border-g4{border-color:#A4A4A4;}
.border-g5{border-color:#8E8E8E;}
.border-g6{border-color:#797979;}
.border-g7{border-color:#636363;}
.border-g8{border-color:#4D4D4D;}
.border-g9{border-color:var(--g9);}
.border-g10{border-color:var(--g10);}/* #222222 */
.border-h0:hover{border-color:var(--h0);}/* Medium Aquamarine */
.border-h1:hover{border-color:var(--h1);}/* Bright Navy Blue */
.border-h2:hover{border-color:var(--h2);}/* Royal Purple Hover */
.border-h3:hover{border-color:var(--h3);}/* Barbie Pink */
.border-h4:hover{border-color:var(--h4);}/* Bittersweet Orange */
.border-h5:hover{border-color:var(--h5);}/* Minion Yellow */
.border-a0:active{border-color:#A4A4A4;}/* #A4A4A4 */
.border-a0.active{border-color:#A4A4A4;}/* #A4A4A4 */
.border-a1:active{border-color:var(--a1);}/* #8E8E8E */
.border-a1.active{border-color:var(--a1);}/* #8E8E8E */
.border-d0:disabled{border-color:var(--d0);}/* #797979 */
.border-d1:disabled{border-color:var(--d1);}/* #636363 */

.border-b-p2{border-bottom-color:#E5E5E5;}

/* HEIGHT */
.h-0{height:0;}
.h-full{height:100%;}
.h-screen{height:100vh;}
.min-h-0{min-height:0;}
.min-h-full{min-height:100%;}
.min-h-screen{min-height:100vh;}
.max-h-full{max-height:100%;}
.max-h-screen{max-height:100vh;}

/* WIDTH */
.w-0-lg{width:0;}
.w-full-lg{width:100%;}
.w-50-lg{width:50%;}
.w-screen-lg{width:100vw;}
.min-w-0-lg{min-width:0;}
.min-w-full-lg{min-width:100%;}
.max-width-none-lg{max-width:none;}
.max-w-full-lg{max-width:100%;}
.max-w-24{max-width:24rem;}

/* CONTAINER  */
.container{max-width:100%;}

/* CONTAINER  */
.container-lg{max-width:48em;}
.container-md{max-width:64em;}

/* Hidden menu toggle checkbox */
#menu-toggle {
  display: none;
}

/* Hamburger button styles */
.hamburger-button {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 3px;
  background-color: #020917;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile close button styles */
.mobile-close-container {
  display: none;
  justify-content: flex-end;
  padding: 16px;
}

.mobile-close-button {
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.close-icon {
  font-size: 24px;
  color: #ffffff;
  font-weight: bold;
}

/* Dashboard Layout */
.dashboard-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: 64px 1fr;
  grid-template-areas:
    "sidebar header"
    "sidebar main";
  height: 100vh;
  overflow: hidden;
}

.header-area {
  grid-area: header;
  position: fixed;
  top: 0;
  left: 240px;
  right: 0;
  height: 64px;
  z-index: 10;
}

.sidebar-area {
  grid-area: sidebar;
  position: fixed;
  width: 240px;
  height: 100vh;
  z-index: 20;
  transition: transform 0.3s ease;
}

.main-area {
  grid-area: main;
  overflow-y: auto;
  height: calc(100vh - 64px);
}

/* Mobile responsive styles */
@media (max-width: 48em) {
  .dashboard-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "main";
  }
  
  .header-area {
    left: 0;
    right: 0;
  }
  
  .hamburger-button {
    display: flex;
  }
  
  .mobile-close-container {
    display: flex;
  }
  
  .sidebar-area {
    transform: translateX(-100%);
    z-index: 30;
    box-shadow: 2px 0 8px rgba(0,0,0,0.1);
  }
  
  /* Show sidebar when checkbox is checked */
  #menu-toggle:checked ~ .dashboard-layout .sidebar-area {
    transform: translateX(0);
  }
  
  /* Add backdrop overlay */
  #menu-toggle:checked ~ .dashboard-layout::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 25;
  }
  
  .main-area {
    height: calc(100vh - 64px);
    margin-top: 64px;
  }
}
