/* Fallback CSS when Vite assets are not built */
:root {
    color-scheme: light;
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f3f4f6;
    color: #111827;
}
html, body {
    min-height: 100%;
    margin: 0;
    padding: 0;
}
body {
    background-color: #f3f4f6;
    line-height: 1.5;
}
a {
    color: #1f2937;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}
button {
    border: 1px solid #1f2937;
    background: #111827;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
}
button:hover {
    background: #1f2937;
}
input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}
.container {
    width: min(100%, 42rem);
    margin: 0 auto;
    padding: 1.5rem;
}
.card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    padding: 2rem;
}
.text-center {
    text-align: center;
}
.mt-4 {
    margin-top: 1rem;
}
.text-sm {
    font-size: 0.875rem;
}
.text-gray-600 {
    color: #4b5563;
}
.text-gray-900 {
    color: #111827;
}
.bg-white {
    background-color: #ffffff;
}
.rounded-md {
    border-radius: 0.375rem;
}
.shadow-sm {
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
}
