/* === Begin themed variables (copied/adapted from your global.css) === */
/*:root {
}

body {
    background: var(--background);
    color: var(--foreground);
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

.container {
    max-width: 100rem;
    margin-inline: auto;
}*/
/* Utilities mimicking Tailwind classes used above (tiny subset) */
/*.bg-background {
    background: var(--background)
}

.bg-card {
    background: var(--card)
}

.text-foreground {
    color: var(--foreground)
}

.text-muted-foreground {
    color: var(--muted-foreground)
}

.text-primary {
    color: var(--primary)
}

.border {
    border: 1px solid var(--border)
}

.border-border {
    border-color: var(--border)
}

.rounded {
    border-radius: 0.5rem
}

.rounded-sm {
    border-radius: .25rem
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

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

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

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

.mt-12 {
    margin-top: 3rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mt-16 {
    margin-top: 4rem
}

.flex {
    display: flex
}

.items-center {
    align-items: center
}

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

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

.gap-2 {
    gap: .5rem
}

.gap-4 {
    gap: 1rem
}

.grid {
    display: grid
}

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

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

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

.max-w-4xl {
    max-width: 56rem
}

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

.hover\:text-primary:hover {
    color: var(--primary)
}

.hover\:underline:hover {
    text-decoration: underline
}

.hover\:opacity-80:hover {
    opacity: .8
}

.sticky {
    position: sticky
}

.top-0 {
    top: 0
}

.z-10 {
    z-index: 10
}*/
/* Components */
/*.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: .5rem
}

.card-header {
    padding: 1rem 1rem 0 1rem
}

.card-content {
    padding: 0 1rem 1rem 1rem
}

.badge {
    display: inline-flex;
    align-items: center;
    border-radius: .25rem;
    padding: .125rem .5rem;
    font-size: .75rem
}

.badge-secondary {
    background: var(--secondary);
    color: var(--secondary-foreground)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .375rem;
    border: 1px solid var(--border);
    padding: .375rem .75rem;
    background: transparent
}

.btn-outline {
    background: transparent
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary)
}

.btn-ghost {
    background: transparent;
    color: inherit;
    border-color: transparent
}

.btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem
}

.icon-btn {
    height: 2rem;
    width: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: .375rem;
    border: 1px solid transparent;
    background: transparent
}

.tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    padding: .5rem;
    border-radius: .375rem;
    background: var(--card)
}

.tab-active {
    background: var(--primary);
    color: var(--primary-foreground);
    border-color: var(--primary)
}*/
/* Layout helpers */
/*.min-h-screen {
    min-height: 100vh
}

.min-h-\[60vh\] {
    min-height: 60vh
}*/
/* Simple spacing shortcuts used above */
/*.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0
}*/
