body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    justify-content: center;

}

header {
    background-color: #ff6e4e;
    color: white;
    padding: 10px 0;
    height: 80px; /* Fixed height for the header */
    
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distributes space evenly between logo/site name and nav */    
    height: 100%; /* Ensures the container fills the header height */
}

.logo img {
    height: 100px;
    width: auto;
    margin-left: 30px;

}

nav .menu-toggle {
    display: none; /* Hidden on large screens */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin-right: 20px;
    gap: 20px; /* Space between each navigation item */
    justify-content: flex-end; /* Pushes the nav items to the right */

}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 0px;
}

.main-content.container {
    display: flex;
    justify-content: center;
    padding: 15px;
    flex-wrap: wrap; /* Ensure content wraps on smaller screens */
    
}

.contain {
    background-color: #fff; /* White background for the form container */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: auto;
    box-sizing: border-box;
}

textarea {
            width: 100%;
            height: 100px;
            padding: 10px;
        }
        button {
            margin-top: 10px;
            padding: 10px 20px;
            background-color: #4CAF50;
            color: white;
            border: none;
            cursor: pointer;
        }
        button:hover {
            background-color: #45a049;
        }
        .error {
            color: red;
            margin-top: 10px;
        }