/* Css file that replicates Tailwind CSS classes */
/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

@media (min-width: 1536px) {
    .container {
        max-width: 1536px;
    }
}

/* Max width utilities */
.max-w-none {
    max-width: none;
}

.max-w-xs {
    max-width: 20rem; /* 320px */
}

.max-w-sm {
    max-width: 24rem; /* 384px */
}

.max-w-md {
    max-width: 28rem; /* 448px */
}

.max-w-lg {
    max-width: 32rem; /* 512px */
}

.max-w-xl {
    max-width: 36rem; /* 576px */
}

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

.max-w-3xl {
    max-width: 48rem; /* 768px */
}

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

.max-w-5xl {
    max-width: 64rem; /* 1024px */
}

.max-w-6xl {
    max-width: 72rem; /* 1152px */
}

.max-w-7xl {
    max-width: 80rem; /* 1280px */
}

.max-w-full {
    max-width: 100%;
}

.max-w-screen-sm {
    max-width: 640px;
}

.max-w-screen-md {
    max-width: 768px;
}

.max-w-screen-lg {
    max-width: 1024px;
}

.max-w-screen-xl {
    max-width: 1280px;
}

.max-w-screen-2xl {
    max-width: 1536px;
}

/* Min width utilities */
.min-w-0 {
    min-width: 0px;
}

.min-w-full {
    min-width: 100%;
}

.min-w-min {
    min-width: min-content;
}

.min-w-max {
    min-width: max-content;
}

.min-w-fit {
    min-width: fit-content;
}

/* Layout and sizing */
.w-3 {
    width: 0.75rem; /* 12px */
}

.w-4 {
    width: 1rem; /* 16px */
}

.w-5 {
    width: 1.25rem; /* 20px */
}

.w-8 {
    width: 2rem; /* 32px */
}

.w-10 {
    width: 2.5rem; /* 40px */
}

.w-12 {
    width: 3rem; /* 48px */
}

.w-16 {
    width: 4rem; /* 64px */
}

.w-24 {
    width: 6rem; /* 96px */
}

.w-64 {
    width: 16rem; /* 256px */
}

.w-full {
    width: 100%;
}

.h-3 {
    height: 0.75rem; /* 12px */
}

.h-4 {
    height: 1rem; /* 16px */
}

.h-5 {
    height: 1.25rem; /* 20px */
}

.h-8 {
    height: 2rem; /* 32px */
}

.h-10 {
    height: 2.5rem; /* 40px */
}

.h-12 {
    height: 3rem; /* 48px */
}

.h-16 {
    height: 4rem; /* 64px */
}

.h-24 {
    height: 6rem; /* 96px */
}

.h-26 {
    height: 6.5rem; /* 104px */
}

.h-60 {
    height: 15rem; /* 240px */
}

.h-screen {
    height: 100vh;
}

.h-full {
    height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

/* Background colors */
.bg-white {
    background-color: #ffffff;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-blue-50 {
    background-color: #eff6ff;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-blue-700 {
    background-color: #1d4ed8;
}

.bg-purple-100 {
    background-color: #ede9fe;
}

.bg-green-100 {
    background-color: #dcfce7;
}

.bg-green-500 {
    background-color: #10b981;
}

.bg-green-600 {
    background-color: #059669;
}

.bg-green-700 {
    background-color: #047857;
}

.bg-red-50 {
    background-color: #fef2f2;
}

.bg-red-100 {
    background-color: #fee2e2;
}

.bg-yellow-100 {
    background-color: #fef3c7;
}

.bg-orange-100 {
    background-color: #fed7aa;
}

.bg-gray-600 {
    background-color: #4b5563;
}

.bg-gray-700 {
    background-color: #374151;
}

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

.from-purple-500 {
    --tw-gradient-from: #8b5cf6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(139, 92, 246, 0));
}

.to-blue-500 {
    --tw-gradient-to: #3b82f6;
}

/* Text colors */
.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.text-blue-700 {
    color: #1d4ed8;
}

.text-blue-800 {
    color: #1e40af;
}

.text-purple-500 {
    color: #8b5cf6;
}

.text-purple-600 {
    color: #7c3aed;
}

.text-purple-800 {
    color: #5b21b6;
}

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

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

.text-red-700 {
    color: #b91c1c;
}

.text-red-800 {
    color: #991b1b;
}

.text-green-800 {
    color: #166534;
}

.text-yellow-800 {
    color: #92400e;
}

.text-orange-800 {
    color: #9a3412;
}

.text-white {
    color: #ffffff;
}

.text-xs {
    font-size: 0.75rem; /* 12px */
    line-height: 1rem; /* 16px */
}

.text-sm {
    font-size: 0.875rem; /* 14px */
    line-height: 1.25rem; /* 20px */
}

.text-lg {
    font-size: 1.125rem; /* 18px */
    line-height: 1.75rem; /* 28px */
}

.text-2xl {
    font-size: 1.5rem; /* 24px */
    line-height: 2rem; /* 32px */
}

.text-3xl {
    font-size: 1.875rem; /* 30px */
    line-height: 2.25rem; /* 36px */
}

/* Font weights */
.font-bold {
    font-weight: 700;
}

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

.font-semibold {
    font-weight: 600;
}

/* Line height utilities */
.leading-tight {
    line-height: 1.25;
}

/* Text transforms */
.uppercase {
    text-transform: uppercase;
}

.italic {
    font-style: italic;
}

/* Padding */
.p-2 {
    padding: 0.5rem; /* 8px */
}

.p-3 {
    padding: 0.75rem; /* 12px */
}

.p-4 {
    padding: 1rem; /* 16px */
}

.p-6 {
    padding: 1.5rem; /* 24px */
}

.p-8 {
    padding: 2rem; /* 32px */
}

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

.px-2 {
    padding-left: 0.5rem; /* 8px */
    padding-right: 0.5rem; /* 8px */
}

.px-2\.5 {
    padding-left: 0.625rem; /* 10px */
    padding-right: 0.625rem; /* 10px */
}

.px-3 {
    padding-left: 0.75rem; /* 12px */
    padding-right: 0.75rem; /* 12px */
}

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

.px-6 {
    padding-left: 1.5rem; /* 24px */
    padding-right: 1.5rem; /* 24px */
}

.px-8 {
    padding-left: 2rem; /* 32px */
    padding-right: 2rem; /* 32px */
}

.py-0\.5 {
    padding-top: 0.125rem; /* 2px */
    padding-bottom: 0.125rem; /* 2px */
}

.py-1 {
    padding-top: 0.25rem; /* 4px */
    padding-bottom: 0.25rem; /* 4px */
}

.py-2 {
    padding-top: 0.5rem; /* 8px */
    padding-bottom: 0.5rem; /* 8px */
}

.py-3 {
    padding-top: 0.75rem; /* 12px */
    padding-bottom: 0.75rem; /* 12px */
}

.py-4 {
    padding-top: 1rem; /* 16px */
    padding-bottom: 1rem; /* 16px */
}

.py-8 {
    padding-top: 2rem; /* 32px */
    padding-bottom: 2rem; /* 32px */
}

.py-12 {
    padding-top: 3rem; /* 48px */
    padding-bottom: 3rem; /* 48px */
}

.pt-6 {
    padding-top: 1.5rem; /* 24px */
}

/* Margins */
.-mt-1 {
    margin-top: -0.25rem; /* -4px */
}

.mt-1 {
    margin-top: 0.25rem; /* 4px */
}

.mt-2 {
    margin-top: 0.5rem; /* 8px */
}

.mt-3 {
    margin-top: 0.75rem; /* 12px */
}

.mt-6 {
    margin-top: 1.5rem; /* 24px */
}

.mt-8 {
    margin-top: 2rem; /* 32px */
}

.mb-2 {
    margin-bottom: 0.5rem; /* 8px */
}

.mb-4 {
    margin-bottom: 1rem; /* 16px */
}

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

.mb-8 {
    margin-bottom: 2rem; /* 32px */
}

.mr-1 {
    margin-right: 0.25rem; /* 4px */
}

.mr-2 {
    margin-right: 0.5rem; /* 8px */
}

.ml-2 {
    margin-left: 0.5rem; /* 8px */
}

.ml-3 {
    margin-left: 0.75rem; /* 12px */
}

.mx-4 {
    margin-left: 1rem; /* 16px */
    margin-right: 1rem; /* 16px */
}

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

.my-4 {
    margin-top: 1rem; /* 16px */
    margin-bottom: 1rem; /* 16px */
}

.-mb-px {
    margin-bottom: -1px;
}

/* Flexbox */
.flex {
    display: flex;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-col {
    flex-direction: column;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.items-start {
    align-items: flex-start;
}

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

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-\[1fr_2fr\] {
    grid-template-columns: 1fr 2fr;
}

.gap-1 {
    gap: 0.25rem; /* 4px */
}

.gap-2 {
    gap: 0.5rem; /* 8px */
}

.gap-3 {
    gap: 0.75rem; /* 12px */
}

.gap-4 {
    gap: 1rem; /* 16px */
}

.gap-6 {
    gap: 1.5rem; /* 24px */
}

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

.inline-flex {
    display: inline-flex;
}

.hidden {
    display: none;
}

/* Position */
.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}

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

/* Position utilities */
.bottom-6 {
    bottom: 1.5rem; /* 24px */
}

.right-6 {
    right: 1.5rem; /* 24px */
}

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

/* Spacing */
.space-x-4 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(1rem * var(--tw-space-x-reverse));
    margin-left: calc(1rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-x-8 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-x-reverse: 0;
    margin-right: calc(2rem * var(--tw-space-x-reverse));
    margin-left: calc(2rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-1 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.25rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

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

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* Border radius */
.border-r {
    border-right-width: 1px;
    border-right-style: solid;
}

.border-gray-100 {
    border-color: #d1d5db;
}

.rounded {
    border-radius: 0.25rem; /* 4px */
}

.rounded-md {
    border-radius: 0.375rem; /* 6px */
}

.rounded-lg {
    border-radius: 0.5rem; /* 8px */
}

.rounded-xl {
    border-radius: 0.75rem; /* 12px */
}

.rounded-2xl {
    border-radius: 1rem; /* 16px */
}

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

.rounded-t-lg {
    border-top-left-radius: 0.5rem; /* 8px */
    border-top-right-radius: 0.5rem; /* 8px */
}

.rounded-r-lg {
    border-top-right-radius: 0.5rem; /* 8px */
    border-bottom-right-radius: 0.5rem; /* 8px */
}

/* 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-b-2 {
    border-bottom-width: 2px;
    border-bottom-style: solid;
}

.border-2 {
    border-width: 2px;
    border-style: solid;
}

.border-l-4 {
    border-left-width: 4px;
    border-left-style: solid;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-300 {
    border-color: #d1d5db;
}

.border-blue-200 {
    border-color: #bfdbfe;
}

.border-red-400 {
    border-color: #f87171;
}

.border-transparent {
    border-color: transparent;
}

/* Text utilities */
.whitespace-nowrap {
    white-space: nowrap;
}

/* Shadow */
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.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-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Focus states */
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:ring-2:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-offset-2:focus {
    --tw-ring-offset-width: 2px;
}

.focus\:ring-blue-500:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(59, 130, 246, var(--tw-ring-opacity));
}

.focus\:ring-purple-500:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(139, 92, 246, var(--tw-ring-opacity));
}

.focus\:ring-green-500:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgba(16, 185, 129, var(--tw-ring-opacity));
}

.focus\:border-transparent:focus {
    border-color: transparent;
}

/* Hover states */
.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.hover\:bg-blue-600:hover {
    background-color: #2563eb;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.hover\:bg-green-600:hover {
    background-color: #059669;
}

.hover\:bg-green-700:hover {
    background-color: #047857;
}

.hover\:bg-gray-700:hover {
    background-color: #374151;
}

.hover\:text-purple-800:hover {
    color: #5b21b6;
}

.hover\:shadow-md:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Responsive utilities */
@media (min-width: 768px) {
    .md\:flex-row {
        flex-direction: row;
    }
    
    .md\:items-center {
        align-items: center;
    }
    
    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .lg\:mx-0 {
        margin-left: 0px;
        margin-right: 0px;
    }
}

/* 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-all {
    transition-property: all;
    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-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

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

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

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

/* Transform */
.transform {
    transform: var(--tw-transform);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

/* Text alignment */
.text-center {
    text-align: center;
}

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

/* SVG specific */
svg {
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

/* Custom tab styles */
.tab-active {
    border-bottom-color: #3b82f6;
    color: #3b82f6;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.tab-active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3b82f6;
    transform: scaleX(1);
    transition: transform 0.2s ease-in-out;
}

.tab-inactive {
    border-bottom-color: transparent;
    color: #6b7280;
    position: relative;
    transition: all 0.2s ease-in-out;
}

.tab-inactive::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #3b82f6;
    transform: scaleX(0);
    transition: transform 0.2s ease-in-out;
}

.tab-button {
    position: relative;
    padding: 0.75rem 1rem;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.25rem;
    border-radius: 0.375rem 0.375rem 0 0;
    transition: all 0.2s ease-in-out;
}

.tab-button:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
}

/* Brand colors */
.bg-brand {
    background-color: var(--brand-color, #3b82f6); /* Default to blue-500 if not set */
}

.focus\:ring-brand:focus {
    --tw-ring-opacity: 1;
    --tw-ring-color: var(--brand-color, #3b82f6); /* Default to blue-500 if not set */
}

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

.from-slate-50 {
    --tw-gradient-from: #f8fafc;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(248, 250, 252, 0));
}

.to-blue-50 {
    --tw-gradient-to: #eff6ff;
}

/* Background opacity */
.bg-white\/80 {
    background-color: rgba(255, 255, 255, 0.8);
}

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

/* Gap utilities */
.gap-2 {
    gap: 0.5rem;
}

/* Text colors */
.text-slate-800 {
    color: #1e293b;
}

.text-slate-700 {
    color: #334155;
}

.text-slate-600 {
    color: #475569;
}

/* Padding utilities */
.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

/* Text alignment */
.text-center {
    text-align: center;
}

/* Margin utilities */
.mb-12 {
    margin-bottom: 3rem;
}

/* Width and height utilities */
.w-32 {
    width: 8rem;
}

.h-32 {
    height: 8rem;
}

/* Font size utilities */
.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

/* Responsive utilities */
@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

