/* placeholder file in case you want custom CSS */
body { font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial; }
/* Dark blue color theme */
body { 
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
    color: #e2e8f0; /* Light text color for contrast */
    background-color: #0f172a; /* Dark blue background */
}

/* Headings with slightly lighter blue */
h1, h2, h3, h4, h5, h6 {
    color: #94a3b8;
}

/* Links with accent color */
a {
    color: #60a5fa;
    text-decoration: none;
}

a:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* Optional: Add some variations */
.container {
    background-color: #1e293b; /* Slightly lighter dark blue for containers */
    border-radius: 8px;
    padding: 20px;
}

/* Button styles */
button, .button {
    background-color: #1d4ed8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
}

button:hover, .button:hover {
    background-color: #2563eb;
}