body {
    font-family: 'Roboto Mono', monospace; /* Use a nerd font */
    margin: 20px;
    background: linear-gradient(to bottom, #ffcc66, #ff9966, #cc6699); /* Sunset gradient background */
    background-attachment: fixed; /* Keep the gradient fixed */
    color: #333; /* Set a default text color */
}

h1 {
    font-family: 'Roboto Mono', monospace;
    font-size: 2.5em;
    font-weight: bold;
    background: linear-gradient(to right, yellow, cyan); /* Gradient for the title */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Make the gradient only apply to the text */
}

#csv-file {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: 'Roboto Mono', monospace;
}

#abacus-plot {
    width: 100%;
    height: 600px;
    margin: auto;
    background-color: transparent; /* Make the background transparent */
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.error {
    color: red;
    margin-bottom: 20px;
    display: none; /* Initially hide the error message */
    font-family: 'Roboto Mono', monospace;
}

.axis-label {
    font-size: 12px;
    font-family: 'Roboto Mono', monospace;
}
