/* PR149 — Onboarding Schedule Settings CSS */

.vc-settings-section {
  background: #fff;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.vc-settings-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vc-settings-title .icon {
  font-size: 20px;
}
.vc-settings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  gap: 12px;
}
.vc-settings-row:last-child { border-bottom: none; }
.vc-settings-label {
  font-size: 14px;
  color: #334155;
  font-weight: 500;
  flex: 1;
}
.vc-settings-sublabel {
  font-size: 11px;
  color: #94a3b8;
  margin-top: 2px;
}

/* Toggle switch */
.vc-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}
.vc-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.vc-toggle-track {
  position: absolute;
  inset: 0;
  background: #cbd5e1;
  border-radius: 12px;
  transition: background 0.2s;
  cursor: pointer;
}
.vc-toggle input:checked + .vc-toggle-track { background: #0f766e; }
.vc-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  transition: transform 0.2s;
  pointer-events: none;
}
.vc-toggle input:checked ~ .vc-toggle-thumb { transform: translateX(20px); }

/* Working days checkboxes */
.vc-days-grid {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.vc-day-checkbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  cursor: pointer;
}
.vc-day-checkbox input { display: none; }
.vc-day-chip {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  background: #f8fafc;
  transition: all 0.15s;
  cursor: pointer;
  user-select: none;
}
.vc-day-checkbox input:checked + .vc-day-chip {
  background: #0f766e;
  color: #fff;
  border-color: #0f766e;
}

/* Travel time input */
.vc-travel-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}
.vc-travel-input {
  width: 64px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 14px;
  text-align: center;
}
.vc-travel-unit {
  font-size: 13px;
  color: #64748b;
}

/* Default view select */
.vc-view-select {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 14px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
}

/* Save button */
.vc-settings-save-btn {
  display: block;
  width: 100%;
  background: #0f766e;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 16px;
  transition: background 0.15s;
}
.vc-settings-save-btn:active { background: #0d5c56; }
