.oft-selector-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.oft-selector-label {
  margin: 0;
  font-weight: 600;
}

.oft-selector {
  min-width: 170px;
  padding: 6px 8px;
  border-radius: 4px;
  border: 1px solid #d0d7de;
  background: #fff;
}

.oft-popup {
  position: relative;
}

.oft-popup-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 170px;
  padding: 6px 10px;
  border-radius: 4px;
  border: none;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  text-align: left;
}

.oft-popup-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 190px;
  max-height: 260px;
  overflow-y: auto;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 100000;
  padding: 4px 0;
}

.oft-popup-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: #24292f;
  text-decoration: none;
}

.oft-flag {
  display: inline-block;
  border-radius: 2px;
  object-fit: cover;
}

.oft-popup-item:hover,
.oft-popup-item.is-active {
  background: #f6f8fa;
}

.oft-floating {
  position: fixed;
  z-index: 99999;
  background: #fff;
  border: 1px solid #d0d7de;
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  padding: 8px 10px;
}

.oft-top-right {
  top: 16px;
  right: 16px;
}

.oft-top-left {
  top: 16px;
  left: 16px;
}

.oft-bottom-right {
  right: 16px;
  bottom: 16px;
}

.oft-bottom-left {
  left: 16px;
  bottom: 16px;
}
