#menu-bar {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    background-color: var(--body2);
    color: #aaaaaa;
    padding: 5px 10px;
    border-radius: 5px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.1s linear, color 0.1s linear;
    z-index: 10;
}
.menu-item:hover {
    /* background-color: var(--body3); */
    cursor: pointer;
    /* color: white; */
}

#menu-selector {
    height: 28.67px;
    position: absolute;
    background-color: var(--action);
    top: 5px;
    border-radius: 5px;
    transition: left 0.25s ease-in-out, width 0.25s ease-in-out;
    display: none;
}

.right-popup {
    position: absolute;
    right: 20px;
    top: 80px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--body2);
    color: white;
    display: none;
    min-width: 250px;
    max-height: 80%;
    overflow-y: scroll;
}

#popup-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0px;
    background-color: hsla(0, 0%, 10%, 0.95);
    padding: 20px;
    z-index: 10;
}
#popup-title div {
    display: flex;
    align-items: center;
    gap: 10px;
}

#popup-close {
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.1s linear;
}
#popup-close:hover {
    background-color: var(--action);
    cursor: pointer;
}

#popup-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-right: 20px;
}

#admin-menu-item {
    display: none;
}

#mods {
    display: none;
}