/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #3b82f6;
  --primary-green: #10b981;
  --primary-amber: #f59e0b;
  --primary-purple: #8b5cf6;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--slate-50);
  color: var(--slate-800);
  line-height: 1.5;
  min-height: 100vh;
}

/* Header Styles */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Logo Section (Left) */
.logo-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-box {
  width: 48px;
  height: 48px;
  /* border-radius: 12px; */
  /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%); */
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box.small {
  width: 40px;
  height: 40px;
}

.logo-icon {
  width: 24px;
  height: 24px;
  color: white;
}

.logo-text {
  display: none;
}

@media (min-width: 640px) {
  .logo-text {
    display: block;
  }
}

.logo-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-800);
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 12px;
  color: var(--slate-500);
  line-height: 1.2;
}

/* Header Title (Center) */
.header-title { 
  align-items: center;
  flex-direction: column;
    gap: 0;
}

@media (min-width: 768px) {
  .header-title {
    display: flex;
  }
}

.title-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-blue);
}

.header-title h1 {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-800);
}

/* Login Section (Right) */
.login-section {
  display: flex;
  align-items: center;
}

.login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  background: white;
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-btn:hover {
  background: #eff6ff;
  border-color: #93c5fd;
}

.login-btn svg {
  width: 18px;
  height: 18px;
}

/* Main Content */
.main-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
}

/* Hero Section */
.hero-section {
  margin-bottom: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #059669 100%);
  padding: 32px;
  color: white;
  box-shadow: var(--shadow-xl);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 768px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.hero-left {
  flex: 1;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 16px;
}

.hero-left h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .hero-left h2 {
    font-size: 36px;
  }
}

.hero-left p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 24px;
}

.hero-stat {
  text-align: center;
  padding: 0 16px;
}

.hero-stat:first-child {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.stat-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}

.stat-card-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stat-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-500);
}

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--slate-800);
}

.stat-desc {
  font-size: 13px;
  color: var(--slate-500);
}

.stat-trend {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
}

.stat-trend.positive {
  color: var(--primary-green);
}

.stat-trend svg {
  width: 16px;
  height: 16px;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 28px;
  height: 28px;
}

.stat-icon.blue {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-blue);
}

.stat-icon.green {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-green);
}

.stat-icon.amber {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-amber);
}

.stat-icon.purple {
  background: rgba(139, 92, 246, 0.15);
  color: var(--primary-purple);
}

/* Section Cards */
.section-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: var(--slate-50);
  border-bottom: 1px solid var(--slate-100);
  flex-wrap: wrap;
  gap: 12px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.section-desc {
  font-size: 14px;
  color: var(--slate-500);
}

.badge-success {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}

.badge-outline {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}

/* Progress Section */
.progress-section {
  margin-bottom: 40px;
}

.progress-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 32px;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-width: 100px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.progress-step:not(.completed):not(.current) .step-circle {
  background: var(--slate-100);
  border: 4px solid var(--slate-200);
  color: var(--slate-400);
}

.progress-step.completed .step-circle {
  background: linear-gradient(135deg, var(--primary-green) 0%, #059669 100%);
  border: 4px solid rgba(16, 185, 129, 0.3);
  color: white;
}

.progress-step.current .step-circle {
  background: white;
  border: 4px solid var(--primary-blue);
  color: var(--primary-blue);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.15);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(59, 130, 246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

.step-circle svg {
  width: 28px;
  height: 28px;
}

.step-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-800);
  text-align: center;
}

.progress-step:not(.completed):not(.current) .step-name {
  color: var(--slate-400);
}

.step-count {
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 4px;
  text-align: center;
}

.overall-progress {
  padding: 0 32px 32px;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--slate-600);
  margin-bottom: 8px;
}

.progress-value {
  font-weight: 700;
  color: var(--primary-blue);
}

.progress-bar {
  height: 12px;
  background: var(--slate-100);
  border-radius: 9999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  border-radius: 9999px;
  transition: width 1s ease;
}

/* Charts Section */
.charts-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (min-width: 1024px) {
  .charts-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

.chart-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.3s ease;
  height: 500px;
}

.chart-card:hover {
  box-shadow: var(--shadow-md);
}

.chart-card.full-width {
  grid-column: 1 / -1;
}

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

.chart-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.chart-desc {
  font-size: 14px;
  color: var(--slate-500);
}

.chart-header .tooltip {
  width: 20px;
  height: 20px;
  color: var(--slate-400);
  cursor: help;
}

.chart-container {
  height: 280px;
  position: relative;
}

.chart-container.large {
  height: 320px;
}

.chart-container canvas {
  width: 100%;
  height: 100%;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.pie-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--slate-600);
}

.legend-color {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Monthly Progress */
.monthly-progress {
  margin-bottom: 40px;
}

/* Division Table */
.division-table-section {
  margin-bottom: 40px;
}

.table-wrapper {
    max-height: 500px;
    overflow-y: auto;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  text-align: left;
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-600);
  border-bottom: 1px solid var(--slate-200);
  white-space: nowrap;
}

.data-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--slate-100);
  font-size: 14px;
  color: var(--slate-600);
  white-space: nowrap;
}

.data-table tbody tr:hover {
  background: var(--slate-50);
}

.text-center {
  text-align: center;
}

.text-amber {
  color: var(--primary-amber);
  font-weight: 500;
}

.text-green {
  color: var(--primary-green);
  font-weight: 500;
}

.division-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--slate-800);
}

.division-cell svg {
  width: 18px;
  height: 18px;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.progress-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}

.mini-progress {
  width: 96px;
  height: 8px;
  background: var(--slate-100);
  border-radius: 9999px;
  overflow: hidden;
}

.mini-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-green) 100%);
  border-radius: 9999px;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}

.status-badge.on-track {
  background: rgba(16, 185, 129, 0.1);
  color: var(--primary-green);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.in-progress {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-blue);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline:hover {
  background: var(--slate-50);
  border-color: var(--slate-300);
}

.btn-outline svg {
  width: 16px;
  height: 16px;
}

/* Updates Section */
.updates-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 1024px) {
  .updates-section {
    grid-template-columns: 2fr 1fr;
  }
}

.updates-card {
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  overflow: hidden;
}

.header-icon {
  width: 20px;
  height: 20px;
  color: var(--slate-400);
}

.updates-list {
  padding: 20px 24px;
}

.update-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--slate-50);
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
}

.update-item:last-child {
  margin-bottom: 0;
}

.update-item:hover {
  background: var(--slate-100);
}

.update-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.update-icon svg {
  width: 20px;
  height: 20px;
}

.update-icon.success {
  background: rgba(16, 185, 129, 0.15);
  color: var(--primary-green);
}

.update-icon.info {
  background: rgba(59, 130, 246, 0.15);
  color: var(--primary-blue);
}

.update-icon.warning {
  background: rgba(245, 158, 11, 0.15);
  color: var(--primary-amber);
}

.update-content {
  flex: 1;
}

.update-content h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.update-content p {
  font-size: 13px;
  color: var(--slate-500);
  margin-bottom: 8px;
}

.update-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--slate-400);
}

.update-time svg {
  width: 12px;
  height: 12px;
}

/* Info Cards */
.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid;
}

.info-card.blue {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border-color: #bfdbfe;
}

.info-card.green {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-color: #a7f3d0;
}

.info-card.amber {
  background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
  border-color: #fde68a;
}

.info-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.info-icon svg {
  width: 20px;
  height: 20px;
  color: white;
}

.info-card.blue .info-icon {
  background: var(--primary-blue);
}

.info-card.green .info-icon {
  background: var(--primary-green);
}

.info-card.amber .info-icon {
  background: var(--primary-amber);
}

.info-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 8px;
}

.info-card p {
  font-size: 13px;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Footer */
.footer {
  background: white;
  border-top: 1px solid var(--slate-200);
  margin-top: 64px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--slate-800);
}

.footer-subtitle {
  font-size: 12px;
  color: var(--slate-500);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  font-size: 14px;
  color: var(--slate-500);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-copyright {
  font-size: 14px;
  color: var(--slate-400);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--slate-100);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--slate-400);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease forwards;
}

/* Focus styles for accessibility */
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}


/* Container */
.max-w-4xl {
  max-width: 56rem; /* 896px */
}

/* Flex + alignment */
.inline-flex {
  display: inline-flex;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 0.5rem;
}

/* Padding */
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

/* Background + Border */
.bg-red-50 {
  background-color: #fef2f2;
}

.border {
  border: 1px solid;
}

.border-red-200 {
  border-color: #fecaca;
}

/* Rounded */
.rounded-full {
  border-radius: 9999px;
}

/* Margin */
.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

/* Text */
.text-sm {
  font-size: 0.875rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.text-5xl {
  font-size: 3rem;
}

.text-6xl {
  font-size: 3.75rem;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

/* Colors */
.text-red-500 {
  color: #ef4444;
}

.text-red-600 {
  color: #dc2626;
}

.text-slate-800 {
  color: #1e293b;
}

.text-slate-500 {
  color: #64748b;
}

/* Width & Height */
.w-2 {
  width: 0.5rem;
}

.h-2 {
  height: 0.5rem;
}

/* Background */
.bg-red-500 {
  background-color: #ef4444;
}

/* Rounded dot */
.rounded-full {
  border-radius: 9999px;
}

/* Animation Pulse */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 1.5s infinite;
}

/* Heading spacing */
.leading-tight {
  line-height: 1.25;
}

.leading-relaxed {
  line-height: 1.625;
}

/* Max width */
.max-w-2xl {
  max-width: 42rem;
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(135deg, rgb(0, 102, 204), rgb(40, 167, 69));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Responsive (simple version) */
@media (min-width: 768px) {
  .md\:text-5xl {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-6xl {
    font-size: 3.75rem;
  }
}
.z-10 {
    z-index: 10;
}
.relative {
    position: relative;
}
/* Positioning */
.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Sizing */
.w-1\/2 {
  width: 50%;
}

.h-full {
  height: 100%;
}

.h-1\/2 {
  height: 50%;
}

/* Position helpers */
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

/* Opacity */
.opacity-50 {
  opacity: 0.5;
}

/* Gradients */
.bg-gradient-to-br {
  background: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-l {
  background: linear-gradient(to left, var(--tw-gradient-stops));
}

.bg-gradient-to-tr {
  background: linear-gradient(to top right, var(--tw-gradient-stops));
}

/* Gradient colors */
.from-blue-50 {
  --tw-gradient-from: #eff6ff;
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(239,246,255,0));
}

.via-white {
  --tw-gradient-stops: var(--tw-gradient-from), #ffffff, var(--tw-gradient-to, rgba(255,255,255,0));
}

.to-green-50 {
  --tw-gradient-to: #f0fdf4;
}

.from-blue-100\/30 {
  --tw-gradient-from: rgba(219,234,254,0.3);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(219,234,254,0));
}

.from-green-100\/30 {
  --tw-gradient-from: rgba(220,252,231,0.3);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(220,252,231,0));
}

.to-transparent {
  --tw-gradient-to: transparent;
}

/* Custom pattern (you must define this yourself) */
.pattern-lines {
      background-image: repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0, 102, 204, 0.02) 12px, rgba(0, 102, 204, 0.02) 24px);
}