/* Local Tailwind CSS - Bypasses CSP restrictions */
/* This is a minimal version with the essential classes we need */

/* Base styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
}

/* Layout utilities */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.p-4 { padding: 1rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-8 { margin-top: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Width and sizing */
.w-full { width: 100%; }
.max-w-md { max-width: 28rem; }
.w-12 { width: 3rem; }
.h-12 { height: 3rem; }
.w-6 { width: 1.5rem; }
.h-6 { height: 1.5rem; }
.w-5 { width: 1.25rem; }
.h-5 { height: 1.25rem; }

/* Colors */
.bg-gray-100 { background-color: #f3f4f6; }
.bg-white { background-color: #ffffff; }
.bg-teal-600 { background-color: #0d9488; }
.bg-teal-700 { background-color: #0f766e; }
.bg-green-50 { background-color: #f0fdf4; }
.bg-green-400 { background-color: #4ade80; }
.bg-teal-500 { background-color: #14b8a6; }
.bg-teal-100 { background-color: #ccfbf1; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-400 { background-color: #f87171; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-400 { background-color: #60a5fa; }
.bg-yellow-50 { background-color: #fefce8; }
.bg-yellow-400 { background-color: #facc15; }

.text-white { color: #ffffff; }
.text-teal-100 { color: #ccfbf1; }
.text-gray-700 { color: #374151; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-gray-800 { color: #1f2937; }
.text-green-800 { color: #166534; }
.text-green-700 { color: #15803d; }
.text-red-800 { color: #991b1b; }
.text-blue-800 { color: #1e40af; }
.text-yellow-800 { color: #92400e; }
.text-yellow-700 { color: #a16207; }

.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }
.border-blue-200 { border-color: #bfdbfe; }
.border-yellow-200 { border-color: #fde68a; }
.border-teal-500 { border-color: #14b8a6; }
.border-teal-100 { border-color: #ccfbf1; }

/* Borders */
.border { border-width: 1px; }
.border-2 { border-width: 2px; }
.border-solid { border-style: solid; }

/* Border radius */
.rounded { border-radius: 0.25rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-lg { border-radius: 0.5rem; }

/* Shadows */
.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }

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

/* Positioning */
.relative { position: relative; }
.absolute { position: absolute; }

/* Display */
.block { display: block; }
.inline { display: inline; }
.inline-block { display: inline-block; }

/* Text sizing */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }

/* Font weights */
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* Flexbox utilities */
.flex-shrink-0 { flex-shrink: 0; }

/* Spacing utilities */
.space-y-6 > * + * { margin-top: 1.5rem; }

/* Focus states */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px currentColor; }
.focus\:ring-teal-500:focus { box-shadow: 0 0 0 2px #14b8a6; }
.focus\:border-teal-500:focus { border-color: #14b8a6; }

/* Hover states */
.hover\:bg-teal-700:hover { background-color: #0f766e; }
.hover\:border-teal-400:hover { border-color: #2dd4bf; }

/* Transitions */
.transition-all { transition-property: all; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; }
.duration-200 { transition-duration: 200ms; }

/* Background opacity */
.bg-opacity-20 { background-color: rgba(255, 255, 255, 0.2); }

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

/* Gradient backgrounds */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.from-teal-600 { --tw-gradient-from: #0d9488; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(13, 148, 136, 0)); }
.to-teal-700 { --tw-gradient-to: #0f766e; }

/* Z-index */
.z-10 { z-index: 10; }

/* Transform */
.hover\:transform:hover { transform: translate(var(--tw-translate-x), 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)); }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }

/* Ring offset */
.focus\:ring-offset-2:focus { box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px currentColor; }

/* Placeholder */
.placeholder-gray-500::placeholder { color: #6b7280; }

/* Responsive utilities */
@media (max-width: 640px) {
    .max-w-md { max-width: 100%; }
    .px-8 { padding-left: 1rem; padding-right: 1rem; }
    .py-12 { padding-top: 2rem; padding-bottom: 2rem; }
}
