header {
    display: flex;
    align-items: center;
    /* Add more styling here */
}

header img {
    width: 100px; /* Adjust as needed */
    /* Add more styling here */
}

nav ul {
    list-style-type: none;
    /* Add more styling here */
}

nav ul li {
    display: inline;
    margin-right: 20px;
    /* Add more styling here */
}

.logo-image {
    width: 60px;
    height: auto;
}

/* Dropdown Button */
.dropbtn {
    /* styles for the button */
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    /* styles for the container */
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    /* styles for the dropdown content */
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Existing styles ... */

/* Styles for button-like links */
.button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4;
    text-decoration: none;
}

.button:hover {
    background-color: #286090;
    border-color: #204d74;
}

/* Other existing styles ... */
