/* navbar */
.cubedb-navbar
{
    background-color: #212121;
    color: #fff;
}

.cubedb-navbar .btn
{
    color: white;
}

.navbar-profile-img
{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 5px;
}

.site-logo
{
    width: 40px;
    height: 40px;
}

#searchuser
{
    width: 100px;
}

/* autocomplete */

.autocomplete
{
	position: absolute;
	background-color: #fff;
	z-index:100;
	border: 1px solid #ccc;
    display: flex;
    flex-direction: column;
}

.autocomplete > a
{
	padding: 5px;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
    text-decoration: none;
    min-width: 300px;
}

.autocomplete > a:hover
{
	background-color: #eee;
}