/* Tailwind CSS Custom Build for Technik Komplizen */
/* All classes used across the website */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
}

html.disable-smooth-scroll {
  scroll-behavior: auto;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #334155;
  background-color: #f8fafc;
  -webkit-overflow-scrolling: touch;
}

/* Form and input reset */
input, button, textarea, select {
  font: inherit;
  color: inherit;
}

input[type="text"], 
input[type="email"], 
input[type="tel"], 
textarea {
  appearance: none;
  background-color: rgb(255 255 255 / 0.7);
  border: 1px solid rgb(226 232 240);
  border-radius: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  margin: 0;
  padding: 0.75rem 1rem;
  outline: 2px solid transparent;
  outline-offset: 2px;
  backdrop-filter: blur(4px);
  transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

input[type="text"]:focus, 
input[type="email"]:focus, 
input[type="tel"]:focus, 
textarea:focus {
  outline: 2px solid rgb(59 130 246);
  outline-offset: 2px;
  border-color: transparent;
}

/* Radio button and checkbox styling */
input[type="radio"], 
input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  width: 1rem;
  height: 1rem;
  border: 2px solid rgb(203 213 225);
  background-color: white;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  user-select: none;
  flex-shrink: 0;
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="checkbox"] {
  border-radius: 0.25rem;
}

input[type="radio"]:checked,
input[type="checkbox"]:checked {
  border-color: rgb(59 130 246);
  background-color: rgb(59 130 246);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

input[type="checkbox"]:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='m10.97 4.97-.02.022-3.473 4.425-2.093-2.094a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3e%3c/svg%3e");
}

input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgb(59 130 246 / 0.5);
}

button {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Remove focus outline from elements that have alternative focus styling */
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

/* SVG styling */
svg {
  display: block;
  vertical-align: middle;
}

/* Custom Map Styling (for netzwerk.html) */
#map {
  height: 500px;
  border-radius: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.custom-marker {
  background-color: #3b82f6;
  border: 3px solid white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.marker-active {
  background-color: #10b981;
  animation: pulse 2s infinite;
}

.marker-new {
  background-color: #f59e0b;
}

.marker-established {
  background-color: #3b82f6;
}

.radius-tooltip {
  background-color: rgba(0, 0, 0, 0.8) !important;
  color: white !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 4px 8px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
}

.radius-tooltip::before {
  border-top-color: rgba(0, 0, 0, 0.8) !important;
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

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

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-pulse-slow {
  animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Layout */
.fixed { position: fixed; }
.relative { position: relative; }
.absolute { position: absolute; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flexbox */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-shrink-0 { flex-shrink: 0; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }

/* Grid */
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Spacing */
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }

.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Padding */
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }

.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }

.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }

.pt-8 { padding-top: 2rem; }
.pt-16 { padding-top: 4rem; }
.pt-24 { padding-top: 6rem; }
.pb-16 { padding-bottom: 4rem; }
.pb-20 { padding-bottom: 5rem; }

/* Margins */
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }

.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.mt-20 { margin-top: 5rem; }
.mt-24 { margin-top: 6rem; }
.mt-32 { margin-top: 8rem; }
.mt-40 { margin-top: 10rem; }
.mt-48 { margin-top: 12rem; }

.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mr-4 { margin-right: 1rem; }

.mx-auto { margin-left: auto; margin-right: auto; }

/* Width and Height */
.w-2 { width: 0.5rem; }
.w-3 { width: 0.75rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-full { width: 100%; }

.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-full { height: 100%; }

/* Max Width */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }

/* Typography */
.font-sans { 
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

.font-mono { 
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
}

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }
.text-8xl { font-size: 6rem; line-height: 1; }

.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.font-black { font-weight: 900; }

/* Text Alignment */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Line Height */
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-loose { line-height: 2; }

/* Text Decoration */
.underline { text-decoration: underline; }
.no-underline { text-decoration: none; }

/* Colors - Text */
.text-white { color: rgb(255 255 255); }
.text-black { color: rgb(0 0 0); }
.text-slate-300 { color: rgb(203 213 225); }
.text-slate-400 { color: rgb(148 163 184); }
.text-slate-500 { color: rgb(100 116 139); }
.text-slate-600 { color: rgb(71 85 105); }
.text-slate-700 { color: rgb(51 65 85); }
.text-slate-800 { color: rgb(30 41 59); }
.text-slate-900 { color: rgb(15 23 42); }
.text-red-500 { color: rgb(239 68 68); }
.text-blue-500 { color: rgb(59 130 246); }
.text-blue-600 { color: rgb(37 99 235); }
.text-blue-800 { color: rgb(30 64 175); }
.text-green-500 { color: rgb(34 197 94); }
.text-green-600 { color: rgb(22 163 74); }
.text-green-800 { color: rgb(22 101 52); }
.text-emerald-200 { color: rgb(167 243 208); }
.text-emerald-600 { color: rgb(5 150 105); }
.text-emerald-800 { color: rgb(6 95 70); }
.text-orange-600 { color: rgb(234 88 12); }
.text-orange-800 { color: rgb(154 52 18); }
.text-amber-700 { color: rgb(180 83 9); }
.text-amber-800 { color: rgb(146 64 14); }
.text-purple-600 { color: rgb(147 51 234); }
.text-purple-800 { color: rgb(107 33 168); }
.text-indigo-600 { color: rgb(79 70 229); }
.text-indigo-800 { color: rgb(55 48 163); }
.text-pink-800 { color: rgb(157 23 77); }
.text-red-700 { color: rgb(185 28 28); }
.text-red-800 { color: rgb(153 27 27); }
.text-green-700 { color: rgb(21 128 61); }
.text-blue-700 { color: rgb(29 78 216); }
.text-yellow-700 { color: rgb(161 98 7); }
.text-yellow-800 { color: rgb(133 77 14); }

/* Background Colors */
.bg-transparent { background-color: transparent; }
.bg-white { background-color: rgb(255 255 255); }
.bg-black { background-color: rgb(0 0 0); }
.bg-slate-50 { background-color: rgb(248 250 252); }
.bg-slate-100 { background-color: rgb(241 245 249); }
.bg-slate-800 { background-color: rgb(30 41 59); }
.bg-slate-900 { background-color: rgb(15 23 42); }
.bg-blue-50 { background-color: rgb(239 246 255); }
.bg-blue-100 { background-color: rgb(219 234 254); }
.bg-blue-500 { background-color: rgb(59 130 246); }
.bg-blue-600 { background-color: rgb(37 99 235); }
.bg-blue-700 { background-color: rgb(29 78 216); }
.bg-green-50 { background-color: rgb(240 253 244); }
.bg-green-100 { background-color: rgb(220 252 231); }
.bg-green-500 { background-color: rgb(34 197 94); }
.bg-emerald-50 { background-color: rgb(236 253 245); }
.bg-emerald-100 { background-color: rgb(209 250 229); }
.bg-emerald-600 { background-color: rgb(5 150 105); }
.bg-emerald-700 { background-color: rgb(4 120 87); }
.bg-orange-50 { background-color: rgb(255 247 237); }
.bg-orange-100 { background-color: rgb(255 237 213); }
.bg-orange-500 { background-color: rgb(249 115 22); }
.bg-orange-600 { background-color: rgb(234 88 12); }
.bg-orange-700 { background-color: rgb(194 65 12); }
.bg-amber-50 { background-color: rgb(255 251 235); }
.bg-amber-500 { background-color: rgb(245 158 11); }
.bg-purple-50 { background-color: rgb(250 245 255); }
.bg-purple-100 { background-color: rgb(243 232 255); }
.bg-purple-500 { background-color: rgb(168 85 247); }
.bg-purple-600 { background-color: rgb(147 51 234); }
.bg-purple-700 { background-color: rgb(126 34 206); }
.bg-indigo-50 { background-color: rgb(238 242 255); }
.bg-indigo-100 { background-color: rgb(224 231 255); }
.bg-indigo-600 { background-color: rgb(79 70 229); }
.bg-indigo-700 { background-color: rgb(67 56 202); }
.bg-pink-100 { background-color: rgb(252 231 243); }
.bg-gray-50 { background-color: rgb(249 250 251); }
.bg-red-50 { background-color: rgb(254 242 242); }
.bg-red-100 { background-color: rgb(254 226 226); }
.bg-red-500 { background-color: rgb(239 68 68); }
.bg-red-600 { background-color: rgb(220 38 38); }
.bg-yellow-50 { background-color: rgb(254 252 232); }
.bg-yellow-100 { background-color: rgb(254 249 195); }

/* Background Colors with Opacity */
.bg-white\/20 { background-color: rgb(255 255 255 / 0.2); }
.bg-white\/40 { background-color: rgb(255 255 255 / 0.4); }
.bg-white\/60 { background-color: rgb(255 255 255 / 0.6); }
.bg-white\/70 { background-color: rgb(255 255 255 / 0.7); }
.bg-white\/80 { background-color: rgb(255 255 255 / 0.8); }
.bg-white\/95 { background-color: rgb(255 255 255 / 0.95); }

/* Opacity */
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-90 { opacity: 0.9; }

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

.from-slate-50 { --tw-gradient-from: rgb(248 250 252); --tw-gradient-to: rgb(248 250 252 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-slate-100 { --tw-gradient-from: rgb(241 245 249); --tw-gradient-to: rgb(241 245 249 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-slate-800 { --tw-gradient-from: rgb(30 41 59); --tw-gradient-to: rgb(30 41 59 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.from-blue-50 { --tw-gradient-from: rgb(239 246 255); --tw-gradient-to: rgb(239 246 255 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-500 { --tw-gradient-from: rgb(59 130 246); --tw-gradient-to: rgb(59 130 246 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-blue-600 { --tw-gradient-from: rgb(37 99 235); --tw-gradient-to: rgb(37 99 235 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.from-green-50 { --tw-gradient-from: rgb(240 253 244); --tw-gradient-to: rgb(240 253 244 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-green-100 { --tw-gradient-from: rgb(220 252 231); --tw-gradient-to: rgb(220 252 231 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.from-emerald-50 { --tw-gradient-from: rgb(236 253 245); --tw-gradient-to: rgb(236 253 245 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-100 { --tw-gradient-from: rgb(209 250 229); --tw-gradient-to: rgb(209 250 229 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-500 { --tw-gradient-from: rgb(16 185 129); --tw-gradient-to: rgb(16 185 129 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-emerald-600 { --tw-gradient-from: rgb(5 150 105); --tw-gradient-to: rgb(5 150 105 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.from-orange-50 { --tw-gradient-from: rgb(255 247 237); --tw-gradient-to: rgb(255 247 237 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-orange-600 { --tw-gradient-from: rgb(234 88 12); --tw-gradient-to: rgb(234 88 12 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-amber-50 { --tw-gradient-from: rgb(255 251 235); --tw-gradient-to: rgb(255 251 235 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.from-purple-50 { --tw-gradient-from: rgb(250 245 255); --tw-gradient-to: rgb(250 245 255 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-purple-600 { --tw-gradient-from: rgb(147 51 234); --tw-gradient-to: rgb(147 51 234 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.from-indigo-50 { --tw-gradient-from: rgb(238 242 255); --tw-gradient-to: rgb(238 242 255 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-indigo-600 { --tw-gradient-from: rgb(79 70 229); --tw-gradient-to: rgb(79 70 229 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.from-gray-50 { --tw-gradient-from: rgb(249 250 251); --tw-gradient-to: rgb(249 250 251 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.via-blue-50 { --tw-gradient-to: rgb(239 246 255 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(239 246 255), var(--tw-gradient-to); }
.via-purple-600 { --tw-gradient-to: rgb(147 51 234 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(147 51 234), var(--tw-gradient-to); }

.to-indigo-50 { --tw-gradient-to: rgb(238 242 255); }
.to-purple-50 { --tw-gradient-to: rgb(250 245 255); }
.to-purple-100 { --tw-gradient-to: rgb(243 232 255); }
.to-purple-500 { --tw-gradient-to: rgb(168 85 247); }
.to-purple-600 { --tw-gradient-to: rgb(147 51 234); }
.to-blue-100 { --tw-gradient-to: rgb(219 234 254); }
.to-blue-500 { --tw-gradient-to: rgb(59 130 246); }
.to-blue-600 { --tw-gradient-to: rgb(37 99 235); }
.to-green-100 { --tw-gradient-to: rgb(220 252 231); }
.to-green-600 { --tw-gradient-to: rgb(22 163 74); }
.to-indigo-600 { --tw-gradient-to: rgb(79 70 229); }
.to-orange-50 { --tw-gradient-to: rgb(255 247 237); }
.to-amber-50 { --tw-gradient-to: rgb(255 251 235); }
.to-amber-600 { --tw-gradient-to: rgb(217 119 6); }
.to-gray-100 { --tw-gradient-to: rgb(243 244 246); }
.to-red-50 { --tw-gradient-to: rgb(254 242 242); }
.to-red-500 { --tw-gradient-to: rgb(239 68 68); }
.to-red-600 { --tw-gradient-to: rgb(220 38 38); }
.to-slate-100 { --tw-gradient-to: rgb(241 245 249); }
.to-slate-900 { --tw-gradient-to: rgb(15 23 42); }
.to-emerald-100 { --tw-gradient-to: rgb(209 250 229); }

/* Background Clip */
.bg-clip-text { 
  -webkit-background-clip: text; 
  background-clip: text; 
}

.text-transparent { color: transparent; }

/* Border Radius */
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }

/* Shadows */
.shadow { box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }

/* Backdrop */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-lg { backdrop-filter: blur(16px); }

/* Borders */
.border { border-width: 1px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-4 { border-left-width: 4px; border-left-style: solid; }
.border-slate-200 { border-color: rgb(226 232 240); }
.border-slate-300 { border-color: rgb(203 213 225); }
.border-slate-700 { border-color: rgb(51 65 85); }
.border-white\/20 { border-color: rgb(255 255 255 / 0.2); }
.border-amber-500 { border-color: rgb(245 158 11); }
.border-blue-200 { border-color: rgb(191 219 254); }
.border-red-400 { border-color: rgb(248 113 113); }
.border-red-500 { border-color: rgb(239 68 68); }
.border-green-400 { border-color: rgb(74 222 128); }
.border-green-500 { border-color: rgb(34 197 94); }
.border-blue-500 { border-color: rgb(59 130 246); }
.border-yellow-500 { border-color: rgb(234 179 8); }

/* Z-Index */
.z-50 { z-index: 50; }

/* Position */
.top-0 { top: 0px; }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Transitions */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }

.duration-150 { transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.duration-300 { transition-duration: 300ms; }

.ease-in { transition-timing-function: cubic-bezier(0.4, 0, 1, 1); }
.ease-out { transition-timing-function: cubic-bezier(0, 0, 0.2, 1); }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Transform */
.transform { transform: translateX(var(--tw-translate-x)) translateY(var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y)); }

/* Cursor */
.cursor-pointer { cursor: pointer; }

/* Group */
.group { }

/* Hover States */
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:text-blue-600:hover { color: rgb(37 99 235); }
.hover\:text-blue-800:hover { color: rgb(30 64 175); }
.hover\:text-orange-800:hover { color: rgb(154 52 18); }
.hover\:text-slate-300:hover { color: rgb(203 213 225); }
.hover\:text-white:hover { color: rgb(255 255 255); }
.hover\:text-emerald-200:hover { color: rgb(167 243 208); }
.hover\:text-emerald-600:hover { color: rgb(5 150 105); }
.hover\:text-emerald-800:hover { color: rgb(6 95 70); }
.hover\:bg-white\/90:hover { background-color: rgb(255 255 255 / 0.9); }
.hover\:bg-emerald-700:hover { background-color: rgb(4 120 87); }
.hover\:bg-blue-700:hover { background-color: rgb(29 78 216); }
.hover\:bg-orange-700:hover { background-color: rgb(194 65 12); }
.hover\:bg-purple-700:hover { background-color: rgb(126 34 206); }
.hover\:bg-indigo-700:hover { background-color: rgb(67 56 202); }
.hover\:bg-red-200:hover { background-color: rgb(254 202 202); }
.hover\:bg-blue-200:hover { background-color: rgb(191 219 254); }
.hover\:bg-green-200:hover { background-color: rgb(187 247 208); }
.hover\:bg-purple-200:hover { background-color: rgb(233 213 255); }
.hover\:bg-orange-200:hover { background-color: rgb(254 215 170); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
.hover\:shadow-xl:hover { box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1); }
.hover\:shadow-2xl:hover { box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25); }
.hover\:scale-105:hover { transform: scale(1.05); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:-translate-y-2:hover { transform: translateY(-0.5rem); }

/* Focus States */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:text-blue-600:focus { color: rgb(37 99 235); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.focus\:ring-blue-500:focus { --tw-ring-color: rgb(59 130 246); }
.focus\:border-transparent:focus { border-color: transparent; }

/* Ring utilities for active states */
.ring-2 { box-shadow: 0 0 0 2px var(--tw-ring-color); }
.ring-offset-2 { box-shadow: 0 0 0 2px var(--tw-ring-offset-color), 0 0 0 calc(2px + 2px) var(--tw-ring-color); }
.ring-blue-500 { --tw-ring-color: rgb(59 130 246); }
.ring-red-500 { --tw-ring-color: rgb(239 68 68); }
.ring-green-500 { --tw-ring-color: rgb(34 197 94); }
.ring-purple-500 { --tw-ring-color: rgb(168 85 247); }
.ring-orange-500 { --tw-ring-color: rgb(249 115 22); }
.ring-slate-500 { --tw-ring-color: rgb(100 116 139); }

/* Group Hover */
.group:hover .group-hover\:-translate-y-1 { transform: translateY(-0.25rem); }

/* Responsive Design */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:flex-row { flex-direction: row; }
}

@media (min-width: 768px) {
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
  .md\:text-6xl { font-size: 3.75rem; line-height: 1; }
  .md\:text-7xl { font-size: 4.5rem; line-height: 1; }
  .md\:text-8xl { font-size: 6rem; line-height: 1; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .md\:flex { display: flex; }
  .md\:flex-row { flex-direction: row; }
  .md\:hidden { display: none; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:p-12 { padding: 3rem; }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* Link and Global Styling */
a {
  color: inherit;
  text-decoration: inherit;
}

*,
::before,
::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x: ;
  --tw-pan-y: ;
  --tw-pinch-zoom: ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position: ;
  --tw-gradient-via-position: ;
  --tw-gradient-to-position: ;
  --tw-ordinal: ;
  --tw-slashed-zero: ;
  --tw-numeric-figure: ;
  --tw-numeric-spacing: ;
  --tw-numeric-fraction: ;
  --tw-ring-inset: ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur: ;
  --tw-brightness: ;
  --tw-contrast: ;
  --tw-grayscale: ;
  --tw-hue-rotate: ;
  --tw-invert: ;
  --tw-saturate: ;
  --tw-sepia: ;
  --tw-drop-shadow: ;
  --tw-backdrop-blur: ;
  --tw-backdrop-brightness: ;
  --tw-backdrop-contrast: ;
  --tw-backdrop-grayscale: ;
  --tw-backdrop-hue-rotate: ;
  --tw-backdrop-invert: ;
  --tw-backdrop-opacity: ;
  --tw-backdrop-saturate: ;
  --tw-backdrop-sepia: ;
}

::before,
::after {
  content: var(--tw-content);
}

*, ::before, ::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

/* Additional missing colors and utilities */
.text-gray-500 { color: rgb(107 114 128); }
.text-gray-600 { color: rgb(75 85 99); }
.text-gray-700 { color: rgb(55 65 81); }
.text-gray-800 { color: rgb(31 41 55); }

.bg-gray-100 { background-color: rgb(243 244 246); }
.bg-gray-800 { background-color: rgb(31 41 55); }
.bg-gray-900 { background-color: rgb(17 24 39); }

/* Missing gradients */
.from-red-50 { --tw-gradient-from: rgb(254 242 242); --tw-gradient-to: rgb(254 242 242 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-yellow-50 { --tw-gradient-from: rgb(254 252 232); --tw-gradient-to: rgb(254 252 232 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-yellow-100 { --tw-gradient-from: rgb(254 249 195); --tw-gradient-to: rgb(254 249 195 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

.to-yellow-100 { --tw-gradient-to: rgb(254 249 195); }

/* Additional padding and margin classes */
.pl-4 { padding-left: 1rem; }
.pr-4 { padding-right: 1rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-6 { padding-right: 1.5rem; }

.ml-4 { margin-left: 1rem; }
.mr-6 { margin-right: 1.5rem; }

/* Form focus states */
.focus\:ring-yellow-500:focus { --tw-ring-color: rgb(234 179 8); }
.focus\:ring-red-500:focus { --tw-ring-color: rgb(239 68 68); }
.focus\:ring-green-500:focus { --tw-ring-color: rgb(34 197 94); }
.focus\:ring-purple-500:focus { --tw-ring-color: rgb(168 85 247); }
.focus\:ring-orange-500:focus { --tw-ring-color: rgb(249 115 22); }

/* Additional button states */
.active\:ring-2:active { box-shadow: 0 0 0 2px var(--tw-ring-color); }

/* Missing flex utilities */
.items-end { align-items: flex-end; }
.justify-end { justify-content: flex-end; }
.justify-start { justify-content: flex-start; }

/* Additional width and height classes */
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }

/* Missing border utilities */
.border-2 { border-width: 2px; border-style: solid; }
.border-4 { border-width: 4px; border-style: solid; }

/* Text decoration */
.decoration-2 { text-decoration-thickness: 2px; }

/* Line clamping */
.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Additional responsive classes for md */
@media (min-width: 768px) {
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:space-x-4 > * + * { margin-left: 1rem; }
  .md\:px-4 { padding-left: 1rem; padding-right: 1rem; }
  .md\:py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
}

/* Additional responsive classes for lg */
@media (min-width: 1024px) {
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:space-x-6 > * + * { margin-left: 1.5rem; }
}

/* Missing Display Classes */
.table { display: table; }
.table-cell { display: table-cell; }
.table-row { display: table-row; }

/* Missing Position Classes */
.static { position: static; }
.sticky { position: sticky; }

/* Missing Visibility Classes */
.visible { visibility: visible; }
.invisible { visibility: hidden; }

/* Missing Overflow Classes */
.overflow-auto { overflow: auto; }
.overflow-x-hidden { overflow-x: hidden; }
.overflow-y-hidden { overflow-y: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* Missing Width and Height Classes */
.w-auto { width: auto; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-2\/3 { width: 66.666667%; }
.w-1\/4 { width: 25%; }
.w-3\/4 { width: 75%; }
.w-screen { width: 100vw; }

.h-auto { height: auto; }
.h-screen { height: 100vh; }
.h-1\/2 { height: 50%; }

.min-w-0 { min-width: 0px; }
.min-h-0 { min-height: 0px; }
.min-h-screen { min-height: 100vh; }

/* Missing Flex Classes */
.flex-none { flex: none; }
.flex-auto { flex: 1 1 auto; }
.flex-initial { flex: 0 1 auto; }

/* Missing Text Classes */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }

.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.subpixel-antialiased { -webkit-font-smoothing: auto; -moz-osx-font-smoothing: auto; }

/* Missing Whitespace Classes */
.whitespace-normal { white-space: normal; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre { white-space: pre; }
.whitespace-pre-line { white-space: pre-line; }
.whitespace-pre-wrap { white-space: pre-wrap; }

/* Missing Break Classes */
.break-normal { overflow-wrap: normal; word-break: normal; }
.break-words { overflow-wrap: break-word; }
.break-all { word-break: break-all; }

/* Missing List Classes */
.list-none { list-style-type: none; }
.list-disc { list-style-type: disc; }
.list-decimal { list-style-type: decimal; }

/* Missing Table Classes */
.table-auto { table-layout: auto; }
.table-fixed { table-layout: fixed; }

.border-collapse { border-collapse: collapse; }
.border-separate { border-separate: separate; }

/* Missing Resize Classes */
.resize-none { resize: none; }
.resize { resize: both; }
.resize-y { resize: vertical; }
.resize-x { resize: horizontal; }

/* Missing Select Classes */
.select-none { user-select: none; }
.select-text { user-select: text; }
.select-all { user-select: all; }
.select-auto { user-select: auto; }

/* Missing Pointer Events */
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* Ensure proper stacking */
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }

/* Critical missing margin and padding classes */
.m-0 { margin: 0; }
.m-1 { margin: 0.25rem; }
.m-2 { margin: 0.5rem; }
.m-3 { margin: 0.75rem; }
.m-4 { margin: 1rem; }
.m-5 { margin: 1.25rem; }
.m-6 { margin: 1.5rem; }
.m-8 { margin: 2rem; }
.m-auto { margin: auto; }

.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }

/* More missing text utilities */
.truncate { 
  overflow: hidden; 
  text-overflow: ellipsis; 
  white-space: nowrap; 
}

.text-ellipsis { text-overflow: ellipsis; }
.text-clip { text-overflow: clip; }

/* Form-specific classes */
.appearance-none { appearance: none; }

/* Transform utilities */
.scale-100 { transform: scale(1); }
.scale-95 { transform: scale(0.95); }
.scale-105 { transform: scale(1.05); }
.scale-110 { transform: scale(1.1); }

.-translate-y-1 { transform: translateY(-0.25rem); }
.-translate-y-2 { transform: translateY(-0.5rem); }
.translate-y-0 { transform: translateY(0); }

/* Additional missing SVG and stroke utilities */
.stroke-2 { stroke-width: 2; }
.stroke-current { stroke: currentColor; }

/* Additional missing list utilities */
.list-inside { list-style-position: inside; }
.list-outside { list-style-position: outside; }

/* Additional spacing utilities */
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }

/* Additional responsive text sizes */
@media (min-width: 640px) {
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
}

/* Additional missing focus utilities */
.focus\:text-blue-600:focus { color: rgb(37 99 235); }

/* Additional SVG utilities */
.fill-none { fill: none; }
.fill-current { fill: currentColor; }

/* Stroke utilities for SVG */
[stroke-linecap="round"] { stroke-linecap: round; }
[stroke-linejoin="round"] { stroke-linejoin: round; }

/* Additional missing utilities that might be causing issues */
.outline-none { outline: 2px solid transparent; outline-offset: 2px; }

/* Additional margin utilities */
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }

/* Additional red color variations */
.text-red-600 { color: rgb(220 38 38); }

/* Additional orange color variations */
.from-orange-600 { --tw-gradient-from: rgb(234 88 12); --tw-gradient-to: rgb(234 88 12 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

/* Additional red gradient variations */
.from-red-600 { --tw-gradient-from: rgb(220 38 38); --tw-gradient-to: rgb(220 38 38 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-red-500 { --tw-gradient-from: rgb(239 68 68); --tw-gradient-to: rgb(239 68 68 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.via-red-500 { --tw-gradient-to: rgb(239 68 68 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(239 68 68), var(--tw-gradient-to); }
.via-red-600 { --tw-gradient-to: rgb(220 38 38 / 0); --tw-gradient-stops: var(--tw-gradient-from), rgb(220 38 38), var(--tw-gradient-to); }
.to-orange-600 { --tw-gradient-to: rgb(234 88 12); }

/* Additional red background variations */
.from-red-100 { --tw-gradient-from: rgb(254 226 226); --tw-gradient-to: rgb(254 226 226 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.from-red-200 { --tw-gradient-from: rgb(254 202 202); --tw-gradient-to: rgb(254 202 202 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }
.to-red-200 { --tw-gradient-to: rgb(254 202 202); }

/* Ensure all color variations are available */
.text-red-800 { color: rgb(153 27 27); }
.text-orange-700 { color: rgb(194 65 12); }
.text-purple-700 { color: rgb(126 34 206); }
.text-blue-700 { color: rgb(29 78 216); }

/* Additional background colors */
.bg-red-200 { background-color: rgb(254 202 202); }
.bg-orange-200 { background-color: rgb(254 215 170); }
.bg-purple-200 { background-color: rgb(233 213 255); }
.bg-blue-200 { background-color: rgb(191 219 254); }

/* Additional missing "to" gradient classes */
.to-blue-100 { --tw-gradient-to: rgb(219 234 254); }
.to-green-100 { --tw-gradient-to: rgb(220 252 231); }
.to-purple-100 { --tw-gradient-to: rgb(243 232 255); }
.to-emerald-100 { --tw-gradient-to: rgb(209 250 229); }
.to-slate-100 { --tw-gradient-to: rgb(241 245 249); }

/* Additional missing "from" gradient classes */
.from-emerald-50 { --tw-gradient-from: rgb(236 253 245); --tw-gradient-to: rgb(236 253 245 / 0); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to); }

/* Additional background color classes that might be missing */
.bg-emerald-50 { background-color: rgb(236 253 245); }
.bg-emerald-100 { background-color: rgb(209 250 229); }

/* Explicit gradient combinations for help category boxes */
.bg-gradient-to-br.from-blue-50.to-blue-100 {
  background-image: linear-gradient(to bottom right, rgb(239 246 255), rgb(219 234 254)) !important;
}

.bg-gradient-to-br.from-green-50.to-green-100 {
  background-image: linear-gradient(to bottom right, rgb(240 253 244), rgb(220 252 231)) !important;
}

.bg-gradient-to-br.from-purple-50.to-purple-100 {
  background-image: linear-gradient(to bottom right, rgb(250 245 255), rgb(243 232 255)) !important;
}

.bg-gradient-to-br.from-orange-50.to-red-50 {
  background-image: linear-gradient(to bottom right, rgb(255 247 237), rgb(254 242 242));
}

.bg-gradient-to-br.from-blue-50.to-indigo-50 {
  background-image: linear-gradient(to bottom right, rgb(239 246 255), rgb(238 242 255));
}

.bg-gradient-to-br.from-indigo-50.to-purple-50 {
  background-image: linear-gradient(to bottom right, rgb(238 242 255), rgb(250 245 255));
}

.bg-gradient-to-br.from-emerald-50.to-emerald-100 {
  background-image: linear-gradient(to bottom right, rgb(236 253 245), rgb(209 250 229));
}

.bg-gradient-to-br.from-slate-50.to-slate-100 {
  background-image: linear-gradient(to bottom right, rgb(248 250 252), rgb(241 245 249));
}

.bg-gradient-to-br.from-orange-50.to-amber-50 {
  background-image: linear-gradient(to bottom right, rgb(255 247 237), rgb(255 251 235));
}

.bg-gradient-to-br.from-red-50.to-orange-50 {
  background-image: linear-gradient(to bottom right, rgb(254 242 242), rgb(255 247 237));
}

/* Gradient combinations used on main page */
.bg-gradient-to-r.from-emerald-100.to-blue-100 {
  background-image: linear-gradient(to right, rgb(209 250 229), rgb(219 234 254));
}

.bg-gradient-to-r.from-green-100.to-blue-100 {
  background-image: linear-gradient(to right, rgb(220 252 231), rgb(219 234 254));
}

.bg-gradient-to-br.from-slate-100.to-blue-100 {
  background-image: linear-gradient(to bottom right, rgb(241 245 249), rgb(219 234 254));
}

/* Fix double bullet points - remove CSS bullets when manual bullets are used */
li:has(strong:first-child:starts-with("•")),
li:first-child:starts-with("•") {
  list-style: none;
}

/* More specific fix for blog lists */
.blog-post ul li,
.bg-red-50 ul li,
.bg-orange-50 ul li,
.bg-purple-50 ul li,
.bg-blue-50 ul li,
.bg-yellow-50 ul li,
.bg-green-50 ul li {
  list-style: none;
}

/* Ensure all lists with manual bullets have no CSS bullets */
li[class*="text-red-700"] li,
li[class*="text-orange-700"] li,
li[class*="text-purple-700"] li,
li[class*="text-blue-700"] li,
li[class*="text-yellow-700"] li,
li[class*="text-green-700"] li {
  list-style: none;
}

/* General fix for any li that starts with • */
li strong:first-child {
  margin-left: 0;
}

ul.space-y-3 li,
ul.space-y-2 li,
ul.space-y-1 li {
  list-style: none;
}

/* Blog article header gradients - these need to be explicit */
.bg-gradient-to-r.from-green-500.to-green-600 {
  background-image: linear-gradient(to right, rgb(34 197 94), rgb(22 163 74)) !important;
}

.bg-gradient-to-r.from-orange-500.to-red-500 {
  background-image: linear-gradient(to right, rgb(249 115 22), rgb(239 68 68)) !important;
}

.bg-gradient-to-r.from-red-500.to-red-600 {
  background-image: linear-gradient(to right, rgb(239 68 68), rgb(220 38 38)) !important;
}

.bg-gradient-to-r.from-blue-500.to-blue-600 {
  background-image: linear-gradient(to right, rgb(59 130 246), rgb(37 99 235)) !important;
}

/* Ensure background colors are available as fallback */
.bg-green-500 { background-color: rgb(34 197 94) !important; }
.bg-green-600 { background-color: rgb(22 163 74) !important; }
.bg-orange-500 { background-color: rgb(249 115 22) !important; }
.bg-red-500 { background-color: rgb(239 68 68) !important; }
.bg-red-600 { background-color: rgb(220 38 38) !important; } 