*, *::before, *::after { box-sizing: border-box; margin: 0; }
html, body { margin: 0; }
ul, ol { padding-left: 0; }
.p-0 { padding: 0; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-8 { padding: 2rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.m-0 { margin: 0; }
.mt-8 { margin-top: 2rem; }
.max-w-screen { max-width: 100vw; }
.max-w-screen-md { max-width: 768px; }
.w-full { width: 100%; }
.w-screen { width: 100vw; }
.border { border: 1px solid currentColor; }
.border-0 { border: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.grow { flex-grow: 1; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.grid { display: grid; }
.grid-cols-12 { grid-template-columns: repeat(12, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-9 { grid-column: span 9 / span 9; }
.col-span-11 { grid-column: span 11 / span 11; }
.col-span-12 { grid-column: span 12 / span 12; }
.hidden { display: none; }
.cursor-pointer { cursor: pointer; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.font-roboto-mono { font-family: "Roboto Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }
.bg-white { background-color: #ffffff; }
.border-black { border-color: #000000; }
.min-h-screen { min-height: 100vh; }
.bg-transparent { background-color: transparent; }
.border-t-gray-900 { border-top-color: #111827; }
.border-opacity-0 { border-color: transparent; }
.font-medium { font-weight: 500; }
.drop-shadow-sm { filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05)); }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.no-underline { text-decoration: none; }
.appearance-none { appearance: none; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.col-span-3 { grid-column: span 3 / span 3; }
.h-0 { height: 0; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-8 { padding-bottom: 2rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-12 { padding-top: 3rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.invisible { visibility: hidden; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-md { font-size: 1rem; line-height: 1.5rem; }
.text-black { color: #000000; }
.leading-6 { line-height: 1.5rem; }
.list-none { list-style-type: none; }
.list-disc { list-style-type: disc; }
.duration-300 { transition-duration: 300ms; }
.duration-75 { transition-duration: 75ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; }
.overflow-x-hidden { overflow-x: hidden; }
.focus\:outline-none { outline: 2px solid transparent; outline-offset: 2px; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:border-opacity-100:hover { border-color: currentColor; }
.hover\:drop-shadow-md:hover { filter: drop-shadow(0 3px 3px rgb(0 0 0 / 0.12)); }
.hover\:drop-shadow-sm:hover { filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05)); }
.hover\:opacity-90:hover { opacity: 0.9; }
.hover\:scale-110:hover { transform: scale(1.1); }
.hover\:text-orange-400:hover { color: #fb923c; }
.hover\:underline:hover { text-decoration: underline; }
@media (min-width: 768px) { .md\:max-w-screen-md { max-width: 768px; } }
@media (min-width: 640px) { .sm\:flex-row { flex-direction: row; } }
@media (min-width: 640px) { .sm\:justify-end { justify-content: flex-end; } }
@media (min-width: 640px) { .sm\:justify-start { justify-content: flex-start; } }
@media (min-width: 640px) { .sm\:text-left { text-align: left; } }
@media (min-width: 640px) { .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; } }
@media (min-width: 640px) { .sm\:w-auto { width: auto; } }
.visited\:hover\:text-orange-400:visited:hover { color: #fb923c; }
.visited\:text-black:visited { color: #000000; }