.gfc-widget {
  font-family: 'Inter', sans-serif;
  width: fit-content;
  padding: 15px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.gfc-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
  min-width: 160px;
}

.gfc-item span {
  font-size: 1.2rem;
  color: #eee;
  user-select: none;
}

/* Switch style */
.gfc-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.gfc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.gfc-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #555;
  transition: 0.3s;
  border-radius: 28px;
}

.gfc-slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.gfc-switch input:checked+.gfc-slider {
  background-color: #4CAF50;
}

.gfc-switch input:checked+.gfc-slider:before {
  transform: translateX(24px);
}