body {
    font-family: "Roboto", sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /* Ensure a vertical flex container */
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
    max-width: 400px;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #333333;
}

.input-group {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    font-size: 16px;     /* Adjust font size as needed */
}

.input-group label {
    flex: 1.25;
    text-align: right;
    padding-right: 10px;
    line-height: 1.5;    /* Adjust line-height to match input height */
    color: #666666;    /* Apply color to labels within .input-group */
}

.input-group input {
    flex: 0.75;          /* Adjusted flex value */
    line-height: 1.5;    /* Adjust line-height to match input height */
}

input[type="date"],
input[type="number"],
/*
button {
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    /* This blue was the original blue chosen to fill the input boxes, however,
     it only has a contrast ratio with the white text of 3.65:1 and for
     accessibility purposes, it is recommended that the contrast not fall below
     4.5:1, so I will try a darker shade of blue, that has a lower brightness or
     saturation but still maintains a vibrant and visually appealing appearance:
     #0056b3, as implemented below this commented out region.
     It achieves a contrast, font : background, of 6.45:1. Much better for reading.
    background-color: #007bff;
    */
    /*
    background-color: #0056b3;
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
*/
button {
    line-height: 1.5;
    width: 100%;
    margin-top: 10px;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    /*background-color: #0056b3; /* Contrast = 7.04:1 vgood for accessibility */
    /* background-color: #76c4ae;  /* color = betwitched tree, but too light */
    /* background-color: #036b53; */
    /* background-color: #228B22; /* Forest Green */
    /* background-color: #355E3B; /* Hunter Green */
    /* background-color: #004225; /* British Racing Green */
    /* background-color: #00563F; /* Deep Green */
    /* background-color: #129576; /* I chose this green, contrast is 3.75:1 */
    /* background-color: #e49216; /* Fails the contrast test. */
    /* background-color: #395B64; /* 7.35:1 contrast ratio. */
    background-color: #375C64; /* 7.29:1 contrast ratio. */
    font-size: 16px; /* Adjust font size as needed */
    color: #ffffff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

input[type="date"]:focus,
input[type="number"]:focus,
button:focus {
    outline: none;
}

/*
The below line prevents the browser's default calendar from popping up as a
"selection menu" when the user clicks on the "Starting Date" input box.
I am commenting it out because I want it to appear.

input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
}

*/

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

button:hover {
    background-color: #0056b3;
}

/* Keep the existing CSS for .container and other styles */

footer {
    position: fixed; /* or position: absolute; */
    bottom: 0;
    width: 100%;
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
}

