/* Set a lighter background color for the body */
body {
    background-color: #f0f8ff; /* Light blue background for better readability */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Set a darker, more contrasting header */
h1, h2, h3 {
    color: #333; /* Darker text for readability */
}

/* Style buttons with clear contrast */
button {
    background-color: #4CAF50; /* Green button for better contrast */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

button:hover {
    background-color: #45a049; /* Darker green on hover */
}

/* Input fields with clear distinction */
input[type="text"] {
    padding: 8px;
    margin: 10px 0;
    width: 100%;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Improve readability of the training progress and other important sections */
#trainingChart {
    background-color: rgba(255, 255, 255, 0.8); /* Light background for chart */
    border: 1px solid #ccc;
    border-radius: 8px;
}

/* Improve footer readability with some separation from content */
footer {
    text-align: center;
    padding: 10px 0;
    background-color: #333;
    color: white;
    margin-top: 20px;
}

/* Add space and borders to key sections to separate them visually */
.ai-demo-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    width: 80%;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

/* Adjust the container widths */
.content-container {
    width: 70%;
    margin: 0 auto;
    padding: 20px;
}
