#spsfcUseAreaBtn {
  position: absolute;
  z-index: 1;
  right: 75px;
  top: 20px;
  width: 160px;
}

.spsfc__arrow {
  width: 8px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-left: 4px;
}

.spsfc__theme-button.spsfc__active .spsfc__arrow {
  transform: rotate(-135deg);
}

.spsfc__theme-container {
  display: none;
  position: relative;
}

.spsfc__theme-container.spsfc__visible {
  display: block;
}

.spsfc__theme-button {
  width: 100%;
  background-color: #1858c9;
  color: white;
  padding: 9px 14px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  transition: background-color 0.2s;
  white-space: nowrap;
  box-shadow: 0.5px 0.9px 4px 0 rgba(0, 0, 0, 0.27);
}

.spsfc__theme-button:hover {
  background-color: #1343a3;
}

.spsfc__theme-button.spsfc__active {
  border-radius: 5px 5px 0 0;
  background-color: #1b4fb0;
}

.spsfc__theme-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  border-radius: 0 0 5px 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 100;
  width: 100%;
}

.spsfc__theme-menu.spsfc__show {
  max-height: 400px;
  opacity: 1;
}

.spsfc__theme-item {
  padding: 8px 12px;
  cursor: pointer;
  color: #333;
  font-size: 13px;
  border: none;
  width: 100%;
  text-align: left;
  background: white;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: background-color 0.2s;
}

.spsfc__theme-item:hover {
  background-color: #f3f4f6;
}

.spsfc__theme-item.spsfc__checked {
  background-color: #e0edff;
  color: #111827;
  font-weight: 500;
}

.spsfc__color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

.spsfc__theme-label {
  flex: 1;
}
