body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4; /* grey background */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Change to minimum height instead of fixed height */
    height: auto; /* Allow the body to expand as necessary */
}

.container {
    background-color: #fff; /* White background for the container */
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 80%; /* Responsive width */
    overflow: auto; /* add overflow auto to prevent cutoff */
    max-width: 500px; /* Max width for larger screens */
}

.logo img {
    display: block;
    height: auto; /* maintain aspect ratio */
    margin: 0 auto; /* Center the logo */
    max-width: 300px;
}

.button {
    background-color: #4CAF50; /* Green color */
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

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

.box {
    background-color: #e9e9e9; /* Light grey background for each box */
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
}

.form-container {
    margin-top: 10px;
}

#graphContainer {
    max-width: 1200px !important;
}

.rightButton {
    float:right;
}
