/* Chat Style Toggle */
.chat-style-toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0;
}

.chat-style-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: #777;
  transition: color 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.chat-style-toggle-label.active {
  color: #0060FF;
  font-weight: 600;
}

.chat-style-toggle {
  position: relative;
  width: 56px;
  height: 30px;
  margin: 0; padding: 0;
}

.chat-style-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.chat-style-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e5e5e5;
  border-radius: 30px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.chat-style-toggle-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.chat-style-toggle input:checked + .chat-style-toggle-slider {
  background: linear-gradient(135deg, #0060FF 0%, #0048c7 100%);
}

.chat-style-toggle input:checked + .chat-style-toggle-slider:before {
  transform: translateX(26px);
}

.chat-style-toggle input:focus + .chat-style-toggle-slider {

}

.chat-style-toggle-slider:hover {

}

.chat-style-toggle input:checked + .chat-style-toggle-slider:hover {
  background: linear-gradient(135deg, #0060FF 0%, #003da8 100%);
}