
/* Base styles */
body {
    background-color: #F9FAFB;
    color: #0F172A;
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    min-height: 100vh;
}

/* Utility classes */
.bg-gray-50 {
    background-color: #F9FAFB;
}

.bg-gray-950 {
    background-color: #0F172A;
}

.text-gray-950 {
    color: #0F172A;
}

.text-gray-900 {
    color: #0F172A;
}

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

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.font-bold {
    font-weight: 700;
}

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

.max-w-4xl {
    max-width: 36rem;
}

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

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

.py-5 {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.p-8 {
    padding: 2rem;
}

.p-6 {
    padding: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-1 {
    margin-top: 0.25rem;
}

.ml-4 {
    margin-left: 1rem;
}

.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);
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded {
    border-radius: 0.25rem;
}

.bg-white {
    background-color: #FFFFFF;
}

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

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

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

.text-white {
    color: #FFFFFF;
}

.text-blue-500 {
    color: #3B82F6;
}

.border {
    border: 1px solid #D1D5DB;
}

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

.border-blue-500 {
    border-color: #3B82F6;
}

.p-3 {
    padding: 0.75rem;
}

.p-5 {
    padding: 1.25rem;
}

.p-2 {
    padding: 0.5rem;
}

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

.space-y-2 > * {
    margin-top: 0.5rem;
}

.flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}

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

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

.list-disc {
    list-style-type: disc;
}

.pl-6 {
    padding-left: 1.5rem;
}

.space-y-2 > * {
    margin-top: 0.5rem;
}

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

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

.italic {
    font-style: italic;
}

.transition {
    transition: all 150ms ease;
}

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

.hover\:text-yellow-300:hover {
    color: #FDE047;
}

.hover\:bg-blue-500:hover {
    background-color: #3B82F6;
}

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

.underline {
    text-decoration: underline;
}

.opacity-0 {
    opacity: 0;
}

.border-t {
    border-top: 1px solid #D1D5DB;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

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

/* Input and focus styles */
input[type="text"] {
    padding: 0.75rem;
    border: 1px solid #CBD5E1;
    border-radius: 0.25rem;
    font-size: 1rem;
}

input[type="text"]:focus {
    outline: none;
    border-color: #3B82F6;
    box-shadow: 0 0 0 2px #BFDBFE;
}

button:hover {
    cursor: pointer;
}
