body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap; /* Allows the header content to wrap to the next line if necessary */
}


.logo {
    width: 240px; /* Adjust the width to your desired size */
    flex-shrink: 0; /* Prevents the logo from shrinking */
}


h1 {
    color: #343a40;
}

h2 {
    color: #495057;
    margin-bottom: 1rem;
}

form {
    margin-bottom: 1rem;
}

input[type="text"] {
    padding: 6px 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
    margin-right: 1rem;
}

input[type="submit"] {
    background-color: #007bff;
    border: 1px solid #007bff;
    color: #fff;
    padding: 6px 12px;
    font-size: 1rem;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin: 1rem 0;
    border-bottom: 1px solid #ccc;
    padding-bottom: 1rem;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
