body {
    font-family: 'Arial', sans-serif;
    background-color: #087720;
    /* Green background */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: white;
    /* White text color */
}

.site-header, header {
    background-color: #00695c;
    color: white;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.site-header h1, headwer h1 {
    margin-left: 20px;
    /* Adjust as needed */
}

.navigation, header nav {
    display: flex;
    margin-right: 20px;
    /* Adjust as needed */
}

.main-content {
    font-size: 2em;
    /* Larger font size */
    font-weight: bold;
    /* Make text bold */
    flex-grow: 1;
    /* Allows main content to expand */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
    text-align: center;
    /* Center text horizontally */
}

.site-header h1,
.site-header .navigation {
    margin: 0 20px;
    /* Adding margin to header elements */
}

.navigation a, header nav a {
    color: white;
    /* This will make your header links white */
    padding: 5px 15px;
    text-decoration: none;
    margin-left: 10px;
    /* Space between links */
}

.main-content {
    font-size: 2em;
    /* Larger font size */
    font-weight: bold;
    /* Make text bold */
    flex-grow: 1;
    /* Allows main content to expand */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
    text-align: center;
    /* Center text horizontally */
}

#register-section h2 {
    color: #00695c;
    margin-bottom: 15px;
    font-weight: bold;
    /* Make text bold */
}

#register-section form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

form label {
    margin-bottom: 5px;
    font-weight: bold;
    width: 80%;
    /* Adjusted width */
    text-align: left;
    margin-left: auto;
    /* Centering label */
    margin-right: auto;
    /* Centering label */
}

form input[type="text"],
form input[type="email"],
form input[type="password"],
form input[type="number"],
form input[type="tel"],
form select,
form input[type="file"] {
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 80%;
    /* Adjusted width */
    margin-left: auto;
    /* Centering input field */
    margin-right: auto;
    /* Centering input field */
}

form button[type="submit"] {
    padding: 8px 15px;
    background-color: #00695c;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

form button[type="submit"]:hover {
    background-color: #004d40;
}

.site-footer {
    background-color: #00695c;
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin-top: auto;
    /* Push footer to bottom */
}

select#foodItem {
    width: 80%;
    /* Adjust the width as needed */
    padding: 8px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: white;
    /* Ensure the background is white for visibility */
    color: black;
    /* Text color */
    margin-left: auto;
    /* Centering the dropdown */
    margin-right: auto;
    /* Centering the dropdown */
}

/* Profile container with a lighter background and darker text */
.profile-container {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
    background-color: #f2f2f2;
    /* Light background */
    border-radius: 10px;
    color: #333;
    /* Dark text for visibility */
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Header link styles */


/* If there's a specific class or ID used for header links, replace .navigation a with that */

@media screen and (max-width: 600px) {
    .main-content {
        margin: 20px 10px;
    }
}