.theme-change-content .theme-change-title[data-v-bbcc9348] {
  width: 90%;
  text-align: center;
  font-size: var(--font-size-large);
  font-weight: 600;
  color: var(--text-color-deep);
  margin-bottom: 10px;
}
.theme-change-content .theme-container[data-v-bbcc9348] {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.theme-change-content .theme-circleOuter[data-v-bbcc9348] {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid transparent;
  position: relative;
}
.theme-change-content .theme-circleOuter .theme-circleInner[data-v-bbcc9348] {
  width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}
.theme-change-content .theme-circleOuter .theme-circleInner[data-v-bbcc9348]:hover {
  opacity: 0.7;
}
.theme-change-content .theme-circleOuter .light[data-v-bbcc9348] {
  background-color: var(--primary-color);
}
.theme-change-content .theme-circleOuter .dark[data-v-bbcc9348] {
  background: #000000;
}
.theme-change-content .light-active[data-v-bbcc9348] {
  border: 2px solid var(--primary-color);
}
.theme-change-content .dark-active[data-v-bbcc9348] {
  border: 2px solid #000000;
}
.theme-change-button[data-v-bbcc9348] {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.theme-change-button[data-v-bbcc9348]:hover {
  transform: scale(1.1);
}

