/* 블루 그라데이션 액센트 (시간 입력 아이콘 등) */
.bg-blue-grad {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

/* Toggle Switch Styles */
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-tertiary);
  transition: .4s;
  border-radius: 34px;
  border: 2px solid var(--border-color);
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background: var(--bg-secondary);
  transition: .4s;
  border-radius: 50%;
  box-shadow: 0 2px 4px var(--shadow-color);
}

input:checked + .toggle-slider {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* Custom Radio Buttons */
.custom-radio {
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  margin-bottom: 12px;
  display: block;
  font-size: 14px;
  user-select: none;
}

.custom-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: var(--bg-secondary);
  border-radius: 50%;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.custom-radio:hover input ~ .checkmark {
  background: var(--bg-tertiary);
}

.custom-radio input:checked ~ .checkmark {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-color: #1d4ed8;
}

.custom-radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio input:checked ~ .checkmark:after {
  display: block;
}

.custom-radio .checkmark:after {
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: white;
}

/* Custom Checkbox */
.custom-checkbox {
  position: relative;
  cursor: pointer;
  padding-left: 35px;
  margin-bottom: 12px;
  display: block;
  font-size: 14px;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 20px;
  width: 20px;
  background: var(--bg-secondary);
  border-radius: 4px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.custom-checkbox:hover input ~ .checkmark {
  background: var(--bg-tertiary);
}

.custom-checkbox input:checked ~ .checkmark {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  border-color: #1d4ed8;
}

.custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox .checkmark:after {
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* Day Checkbox Styles */
.day-checkbox {
  position: relative;
  cursor: pointer;
}

.day-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.day-label {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.day-checkbox:hover .day-label {
  background: var(--bg-secondary);
}

.day-checkbox input:checked + .day-label {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: white;
  border-color: #1d4ed8;
}
