body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #FFFFFF; /* White background */
    color: #000000; /* Black text */
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    background-color: #005A32; /* Dark green background for better contrast */
    color: #FFFFFF; /* White text */
    padding: 10px;
    border-radius: 5px;
    font-size: 1.5em; /* Reduced font size */
    margin: 0;
}

.logo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #005A32; /* Dark green background */
    border-radius: 5px;
    margin-bottom: 20px;
}

.logo-container img {
    width: 150px; /* Adjust the size as needed */
}

h2 {
    background-color: #005A32; /* Dark green background for better contrast */
    color: #FFFFFF; /* White text */
    padding: 5px;
    border-radius: 5px;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.date-container {
    text-align: center;
    margin: 10px;
}

.date-container label,
.date-container input[type="date"] {
    display: block;
    margin: 0 auto;
    text-align: center;
    font-size: 1em;
}

input[type="date"] {
    background-color: #FFFFFF; /* White background */
    color: #000000; /* Black text */
    border: 1px solid #000000; /* Black border */
    padding: 10px;
    border-radius: 5px;
    font-size: 1em;
    width: 90%;
    text-align: center; /* Center align text */
}

button {
    background-color: #005A32; /* Dark green background */
    color: #FFFFFF; /* White text */
    border: 1px solid #000000; /* Black border */
    padding: 10px;
    border-radius: 5px;
    font-size: 1em;
    width: 90%;
    margin: 10px auto; /* Center align with auto margins */
    cursor: pointer;
    display: block;
    text-align: center; /* Center align text */
}

button:hover {
    background-color: #004021; /* Even darker green background */
}

ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

li {
    background-color: #004021; /* Even darker green background */
    color: #FFFFFF; /* White text */
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
    font-size: 1.2em;
}

li .icon {
    margin-right: 10px; /* Add some space between the icon and the text */
}

.footer-text {
    text-align: center;
    margin: 20px 0;
    font-size: 0.9em;
    color: #000000; /* Black text */
}

/* Responsive design */
@media (min-width: 600px) {
    h1 {
        font-size: 2em; /* Slightly larger for bigger screens */
    }
    
    h2 {
        font-size: 1.75em;
    }
    
    input[type="date"], button {
        width: 60%;
        font-size: 1.2em;
    }
    
    li {
        font-size: 1.5em;
    }
}
