:root {
    --navbar-height: 50px;
    --navbar-color: #792812;
    --navbar-hover: #611d0a;
}

.navbar {
    width: 100%;
    height: var(--navbar-height);
    background-color: var(--navbar-color);
    position: fixed;
    display: flex;
    flex-direction: row;
    border-collapse: collapse;
    z-index: 10;
}

.logo {
    position: relative;
    margin: 10px;
    z-index: 2;
}

.logo img {
    width: 23px;
    height: 32.4333px;
}

.nav-buttons {
    justify-content: center;
    text-align: center;
    width: 3600%;
    line-height: var(--navbar-height);
    display: flex;
    flex-direction: row;
    position: relative;
    left: 0;
    gap: 10px;
    z-index: 3;
}

.nav-button {
    height: var(--navbar-height);
    width: 80px;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all .3s;
    z-index: 3;
}

.nav-button:hover {
    background-color: var(--navbar-hover);
}

.profile {
    position: relative;
    width: 80px;
    text-align: end;
    z-index: 2;
    height: var(--navbar-height);
    background-color: var(--navbar-color);
    line-height: var(--navbar-height);
    right: 10px;
    display: flex;
    flex-direction: row;
    gap: 4px;
    transition: all .3s;
}

.profileIco {
    width: 38px;
    height: 38px;
    margin: 7px;
    right: -1px;
    position: relative;
}

.profileArrow {
    width: 26px;
    height: 50px;
    position: relative;
    right: 6px;
}

.profile:hover {
    background-color: var(--navbar-hover);
}

#dropdown {
    width: 130px;
    height: 100px;
    border-radius: 25px;
    background-color: var(--navbar-color);
    opacity: 0;
    position: relative;
    top: 50px;
    float: right;
    right: 10px;
    transition: all .2s;
    border-radius: 0px 0px 10px 10px;
    background-color: var(--navbar-color);
    border: 2px solid var(--navbar-hover);
}

#arrow {
    transition: all .3s;
}

#create, #extensions {
    display: inline;
}

#settings {
    display: none;
}
