#header {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    display: flex;
}
#header-room-result {
    /* color: green; */
    font-size: 20px;
    padding-left: 5px;
    padding-right: 10px;
    font-weight: bold;
}
#header-type-result {
    /* color: green; */
    font-size: 20px;
    padding-left: 5px;
    font-weight: bold;
}
.logo-container {
    width: 10%;
}

.logo {
    flex-direction: row;
    margin: 5px;
    margin-left: 20px;
    max-height: 80%;
}

.navbar-toggle-container {
    display: none;
}

.collapse-container {
    flex-direction: row;
    justify-content: flex-end;
    width: 100%;
}

.nav-list {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    list-style: none;
}

.nav-link {
    color: #000;
    text-decoration: none;
    margin: 0 15px;
}

.user-dropdown-container {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 50px;
    right: 10px;
    width: 200px;
    z-index: 10;
    -webkit-box-shadow: 0px 9px 10px -1px rgba(181,181,181,1);
    -moz-box-shadow: 0px 9px 10px -1px rgba(181,181,181,1);
    box-shadow: 0px 9px 10px -1px rgba(181,181,181,1);
}

.user-dropdown-visible {
    display: block !important;
}

.user-content {
    list-style: none;
    width: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
}

.user-item {
    text-align: right;
    width: 90%;
}

.user-item:hover {
    background-color: #f2f2f2;
}

.user-link {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    width: 96%;
    display: block;
    padding-right: 20px;
}


.hamburger-item {
    display: none;  
}

