body {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.top-container {
    display: flex;
    flex-direction: column;
}

.main-container {
    background: #74aa9c;
    border-radius: 14px;
    padding: 20px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

.toolbar-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #FA4515;
    display: flex;
    padding: 10px;
    align-items: center;
}

.logo {
    color: #fff;
    font-size: 1.5em;
    font-weight: bold;
    margin-right: 20px;
    width: 100px;
}
.logo-img {
    width: 120%;
}

.toolbar {
    display: flex;
    justify-content: space-evenly;
    flex-grow: 1;
}

.toolbar button {
    font-family: Gillsans, sans-serif;
    padding: 10px 20px;
    background-color: #FA4515;
    color: #fff;
    border: none;
    cursor: pointer;
    margin-left: 10px;
    position: relative;
    z-index: 1;
    font-size: 1.25em;
    font-weight: bold;
}

.toolbar button:first-child {
    margin-left: 0;
}

.toolbar button:hover,
.toolbar a button:hover {
    background-color: #fff;
    color: #FD5000;
    /*
    margin-top: -10px;
    margin-bottom: -10px;
    */
    border-radius: 4px;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}

.dropdown-container {                                                                                                       position: relative;
    display: inline-block;
}

.dropdown-menu {
        display: none; /* Hidden by default */
        position: absolute;
        margin-top: -5px;
        left: 0;
        z-index: 1;
        background-color: #4f2c1d;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        width: 200px;
        border-radius: 4px;
        overflow: hidden;
}

.dropdown-container:hover .inst-button {
    background-color: #fff;
    color: #FD5000;
    border-radius: 4px;
}

.dropdown-container:hover .dropdown-menu {
    display: block; /* Show the dropdown menu on hover */
}

.dropdown-menu li {
    list-style: none;
    padding: 12px 16px;
    border-bottom: 1px solid #ddd;
}

.dropdown-menu li:last-child {
    border-bottom: none; /* Remove border from last item */
}

.dropdown-menu li a {
    color: #FD5000;
    text-decoration: none;
    display: block;
}

.dropdown-menu li:hover {
    background-color: white;
}
