/* 基礎樣式 - Unplug */

/* 顏色變數 */
:root {
  --primary-color: #76c7c0; /* 更精緻的藍綠色 */
  --primary-hover: #64b5ae; /* 主色滑鼠懸停效果 */
  --secondary-color: #f4f7f6; /* 非常淺的灰綠色，接近白色 */
  --accent-color: #ffb997; /* 柔和桃色 */
  --accent-hover: #fcae82; /* 桃色滑鼠懸停效果 */
  --muted-accent-color: #ffe8cc; /* 非常柔和的桃黃色 */
  --text-color: #3a3f44; /* 深灰藍 */
  --border-color: #e0e0e0; /* 淺灰色 - 邊框、分隔線 */
  --button-text-color: #ffffff; /* 白色 - 實色按鈕上的文字 */
  --success-color: #82c9a0; /* 更精緻的綠色 */
  --success-bg: rgba(130, 201, 160, 0.15); /* 淺綠色背景 - 用於有益內容標記 */
  --warning-color: #e67e22; /* 警告色 - 提醒功能 */
  --warning-bg: rgba(230, 126, 34, 0.1); /* 淺橙色背景 - 提醒背景 */
  --harmful-color: #e74c3c; /* 危險色 - 有害內容標記 */
  --harmful-bg: rgba(231, 76, 60, 0.1); /* 淺紅色背景 - 有害內容背景 */
  --overlay-bg-color: rgba(0, 0, 0, 0.55); /* 半透明黑色 - 用於模態框遮罩 */
  --card-shadow: 0 4px 15px rgba(0, 0, 0, 0.07); /* 卡片陰影 */
}

/* 全局样式重置与基础设置 */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Lato", "Noto Sans TC", "Open Sans", "Roboto", sans-serif; /* 添加 Noto Sans TC 作為繁體中文優先字體 */
  background-color: var(--secondary-color);
  color: var(--text-color);
  line-height: 1.7; /* 增加行高以提高可讀性 */
  transition: background-color 0.3s ease;
}

/* 主要容器布局 */
.container {
  max-width: 1100px; /* 稍微增加最大宽度 */
  margin: 0 auto;
  padding: 25px; /* 增加内边距 */
}

/* 标题样式 */
.page-header {
  background-color: var(--primary-color);
  color: var(--button-text-color);
  padding: 20px 25px; /* 调整内边距 */
  text-align: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08); /* 调整阴影 */
  position: relative;
}

/* 卡片样式 */
.card {
  background-color: white;
  border-radius: 16px; /* 增加圆角 */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07); /* 调整阴影使其更柔和 */
  padding: 25px; /* 增加内边距 */
  margin-bottom: 25px; /* 增加外边距 */
}

/* 按钮样式 */
.btn {
  display: inline-block;
  padding: 14px 28px; /* 增加内边距 */
  border: none;
  border-radius: 8px; /* 调整圆角 */
  cursor: pointer;
  font-size: 1em;
  font-weight: 600; /* 增加字重 */
  text-align: center;
  transition: all 0.25s ease-in-out; /* 调整过渡效果 */
  letter-spacing: 0.5px; /* 增加字间距 */
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--button-text-color);
}

.btn-primary:hover {
  background-color: #fcae82; /* 调整悬停颜色 */
  transform: translateY(-2px); /* 添加轻微上移效果 */
  box-shadow: 0 4px 10px rgba(255, 185, 151, 0.4); /* 添加悬停阴影 */
}

.btn-secondary {
  background-color: white;
  color: var(--text-color);
  border: 1.5px solid var(--border-color); /* 调整边框粗细 */
}

.btn-secondary:hover {
  background-color: #f8f8f8; /* 调整悬停颜色 */
  border-color: #c0c0c0; /* 调整悬停边框颜色 */
}

.btn-tertiary {
  background: none;
  border: none;
  color: var(--primary-color);
  text-decoration: none; /* 移除下划线，改为悬停时显示 */
  padding: 10px 15px; /* 调整内边距 */
  font-weight: 500;
}

.btn-tertiary:hover {
  text-decoration: underline; /* 悬停时显示下划线 */
  color: #5aaca5; /* 调整悬停颜色 */
}

/* 底部导航栏 */
.bottom-nav-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-around;
  padding: 12px 0; /* 调整内边距 */
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08); /* 调整阴影 */
  border-top: 1px solid var(--border-color);
  z-index: 100;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 0.85em; /* 调整字体大小 */
  color: var(--text-color);
  text-decoration: none;
  padding: 5px 0; /* 添加内边距 */
  transition: color 0.2s ease;
}

.nav-item i {
  font-size: 1.6em; /* 调整图标大小 */
  margin-bottom: 5px; /* 调整间距 */
}

.nav-item.active {
  color: var(--primary-color);
  font-weight: 600; /* 激活状态加粗 */
}

.nav-item:hover {
  color: var(--primary-color);
}

/* 模态框样式 */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--overlay-bg-color);
  display: flex;
  justify-content: center;
  align-items: center; /* 居中对齐 */
  z-index: 1000;
  overflow-y: auto;
  padding: 20px; /* 在遮罩层添加内边距 */
}

.modal-container {
  background-color: white;
  padding: 30px 35px; /* 增加内边距 */
  border-radius: 16px; /* 增加圆角 */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* 调整阴影 */
  max-width: 520px; /* 调整最大宽度 */
  /* margin: 8vh auto; */ /* 移除，因为 overlay 已经处理对齐 */
  position: relative;
  width: 100%;
}

.nudge-modal {
  text-align: center;
  max-width: 450px; /* 调整最大宽度 */
}

/* 表情按钮样式 */
.emoji-btn-group {
  display: flex;
  justify-content: space-around;
  margin: 25px 0; /* 调整外边距 */
}

.emoji-btn {
  background: none;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 65px; /* 调整大小 */
  height: 65px; /* 调整大小 */
  font-size: 2em; /* 调整字体大小 */
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emoji-btn:hover,
.emoji-btn.selected {
  border-color: var(--primary-color);
  background-color: #e8f8f7; /* 调整背景色 */
  transform: scale(1.1); /* 添加缩放效果 */
}

/* 选择标签样式 */
.choice-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px; /* 调整间距 */
  margin: 25px 0; /* 调整外边距 */
}

.choice-chip {
  background-color: white;
  border: 2px solid var(--border-color);
  border-radius: 25px; /* 调整圆角 */
  padding: 10px 20px; /* 调整内边距 */
  cursor: pointer;
  transition: all 0.25s ease;
  font-weight: 500;
}

.choice-chip:hover,
.choice-chip.selected {
  border-color: var(--primary-color);
  background-color: #e8f8f7; /* 调整背景色 */
  color: var(--primary-color); /* 调整文字颜色 */
  transform: translateY(-2px); /* 添加轻微上移效果 */
}

/* Feed内容卡片 */
.feed-item {
  background-color: white;
  border-radius: 12px; /* 调整圆角 */
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); /* 调整阴影 */
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feed-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.feed-item-img {
  width: 100%;
  height: 300px; /* 增加高度以完整顯示圖片 */
  background-size: cover; /* 確保圖片填滿容器 */
  background-position: center; /* 圖片居中顯示 */
  background-repeat: no-repeat; /* 防止圖片重複 */
  background-color: #f0f0f0; /* 圖片載入前的背景色 */
}

.feed-item-content {
  padding: 18px; /* 调整内边距 */
}

.feed-category {
  display: inline-block;
  background-color: var(--muted-accent-color);
  color: var(--text-color);
  font-size: 0.85em; /* 调整字体大小 */
  padding: 4px 10px; /* 调整内边距 */
  border-radius: 6px; /* 调整圆角 */
  margin-bottom: 10px; /* 调整外边距 */
  font-weight: 500;
}

/* 加载更多按钮 */
.load-more-btn {
  display: block;
  margin: 35px auto; /* 调整外边距 */
  background-color: var(--primary-color);
  color: var(--button-text-color);
  padding: 14px 28px; /* 与 .btn 一致 */
  border: none;
  border-radius: 8px; /* 与 .btn 一致 */
  cursor: pointer;
  font-size: 1em;
  font-weight: 600; /* 与 .btn 一致 */
  transition: all 0.25s ease-in-out;
}

.load-more-btn:hover {
  background-color: #61b8b0; /* 调整悬停颜色 */
  transform: translateY(-2px);
}

/* Feed结束消息 */
.feed-end-message {
  text-align: center;
  padding: 35px 20px; /* 调整内边距 */
  color: #777; /* 调整颜色 */
  font-size: 1.05em; /* 调整字体大小 */
}

/* 报告图表样式 */
.chart-container {
  background-color: white;
  border-radius: 12px; /* 调整圆角 */
  padding: 25px; /* 调整内边距 */
  margin-bottom: 25px; /* 调整外边距 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); /* 调整阴影 */
}

.chart-placeholder {
  width: 100%;
  height: 220px; /* 增加高度 */
  background-color: #f0f0f0; /* 调整背景色 */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px; /* 调整圆角 */
  color: #999; /* 调整颜色 */
  font-style: italic;
}

/* 欢迎页面特定样式 */
.welcome-container {
  max-width: 550px; /* 调整最大宽度 */
  margin: auto;
  padding: 45px 25px; /* 调整内边距 */
  text-align: center;
  background-color: white;
  border-radius: 16px; /* 调整圆角 */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07); /* 与 .card 一致 */
  margin-top: 5vh; /* 使用视口高度调整上边距 */
}

/* 任务日志特定样式 */
.task-log-container {
  padding: 25px; /* 调整内边距 */
  max-width: 650px; /* 调整最大宽度 */
  margin: 25px auto; /* 调整外边距 */
  background-color: white;
  border-radius: 12px; /* 调整圆角 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06); /* 调整阴影 */
}

/* Unplug  休息特定样式 */
.mindful-break-container {
  background-color: white;
  border-radius: 16px; /* 调整圆角 */
  max-width: 520px; /* 调整最大宽度 */
  margin: 45px auto; /* 调整外边距 */
  padding: 35px; /* 调整内边距 */
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07); /* 调整阴影 */
}

.timer-display {
  font-size: 4.5em; /* 调整字体大小 */
  font-weight: 300;
  margin: 25px 0; /* 调整外边距 */
  color: var(--primary-color);
}

/* 內容標記樣式 */
.content-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85em;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.tag-beneficial {
  background-color: var(--success-bg);
  color: var(--success-color);
}

.tag-neutral {
  background-color: #f8f8f8;
  color: #777;
}

.tag-harmful {
  background-color: var(--harmful-bg);
  color: var(--harmful-color);
}

/* 內容遮罩 */
.content-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.92);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 20;
  animation: fadeIn 0.3s ease-out;
}

/* 使用計時器 */
.usage-timer {
  position: fixed;
  bottom: 70px;
  right: 15px;
  background-color: white;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9em;
  font-weight: 600;
  z-index: 40;
  transition: all 0.3s ease;
}

.timer-icon {
  margin-right: 8px;
}

.timer-warning {
  background-color: var(--warning-bg);
  color: var(--warning-color);
  animation: pulse 2s infinite;
}

/* 提醒氣泡 */
.nudge-bubble {
  position: fixed;
  bottom: 80px;
  right: 15px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
  max-width: 300px;
  z-index: 50;
  transform: translateY(20px);
  transition: all 0.3s ease;
  animation: slideIn 0.3s ease-out forwards;
}

.bubble-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 1em;
}

/* 反思按鈕 */
.reflection-btn {
  position: fixed;
  bottom: 70px;
  left: 15px;
  background-color: var(--primary-color);
  color: white;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  z-index: 40;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.reflection-btn:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* 動畫效果 */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* 進度環 */
.progress-ring {
  transition: stroke-dashoffset 0.3s;
  transform: rotate(-90deg);
  transform-origin: 50% 50%;
}

/* 有益內容樣式 */
.beneficial-post {
  position: relative;
  border: 2px solid var(--success-color);
  box-shadow: 0 3px 12px rgba(130, 201, 160, 0.15);
}

/* 有害內容樣式 */
.harmful-post {
  position: relative;
  border: 2px solid var(--harmful-color);
  opacity: 0.85;
}

/* 內容過濾遮罩 */
.filter-overlay {
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}

.filter-overlay h3 {
  margin-bottom: 12px;
  color: var(--harmful-color);
}

.filter-overlay p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.filter-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

/* 模態框樣式 */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: var(--overlay-bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  background-color: white;
  border-radius: 16px;
  max-width: 450px;
  width: 100%;
  overflow: hidden;
  margin: 0 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(20px);
  animation: slideIn 0.3s ease-out forwards;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  padding: 15px 20px;
}

.modal-body {
  padding: 20px;
}

.modal-footer {
  padding: 15px 20px;
  background-color: #f8f8f8;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* 意圖選擇樣式 */
.intent-option {
  border: 2px solid transparent;
  padding: 15px;
  border-radius: 12px;
  margin-bottom: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.intent-option:hover {
  border-color: var(--border-color);
  background-color: #fafafa;
}

.intent-option.selected {
  border-color: var(--primary-color);
  background-color: var(--secondary-color);
}

.intent-option-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--accent-color);
  color: white;
  border-radius: 50%;
  margin-right: 12px;
}

/* 模擬社交媒體 Feed 樣式 */
.simulation-banner {
  background-color: var(--warning-bg);
  padding: 8px 15px;
  text-align: center;
  font-size: 0.9em;
  color: var(--warning-color);
  position: sticky;
  top: 56px;
  z-index: 90;
}

/* 反思日誌樣式 */
.reflection-form textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
  min-height: 120px;
  font-family: inherit;
  margin-bottom: 15px;
  resize: vertical;
}

/* 响应式调整 */
@media (max-width: 768px) {
  .choice-chips {
    justify-content: center;
  }

  .modal-container {
    max-width: 90%;
    padding: 25px 20px; /* 调整内边距 */
  }

  .emoji-btn {
    width: 55px; /* 调整大小 */
    height: 55px; /* 调整大小 */
    font-size: 1.8em; /* 调整字体大小 */
  }
  .page-header h1 {
    font-size: 1.5em;
  }
}

@media (max-width: 480px) {
  .feed-container {
    grid-template-columns: 1fr; /* 单列布局 */
    padding: 15px; /* 调整内边距 */
  }

  .emoji-btn-group {
    flex-wrap: wrap;
    gap: 12px; /* 调整间距 */
  }

  .emoji-btn {
    width: 50px; /* 调整大小 */
    height: 50px; /* 调整大小 */
    font-size: 1.5em; /* 调整字体大小 */
  }

  .btn {
    padding: 12px 22px; /* 调整按钮内边距 */
    font-size: 0.95em;
  }

  .card {
    padding: 20px; /* 调整卡片内边距 */
  }

  .welcome-container {
    padding: 30px 20px; /* 调整欢迎页内边距 */
  }
  .bottom-nav-bar {
    padding: 10px 0;
  }
  .nav-item i {
    font-size: 1.4em;
  }
  .nav-item span {
    font-size: 0.8em;
  }
}

/* Radio button label styling for pre_social_intent.html */
.radio-label {
  display: block;
  margin-bottom: 15px; /* 增加间距 */
  cursor: pointer;
  padding: 12px 15px; /* 增加内边距 */
  border-radius: 8px; /* 增加圆角 */
  border: 1px solid var(--border-color);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.radio-label:hover {
  background-color: #f9f9f9;
}

.radio-label input[type="radio"] {
  margin-right: 12px; /* 增加与文字的间距 */
  transform: scale(1.2); /* 稍微放大单选按钮 */
}

.radio-label input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--primary-color);
}

.radio-label.selected {
  /* For JS to highlight */
  background-color: #e8f8f7;
  border-color: var(--primary-color);
}

/* edited by 李翊嘉 開始*/
/* Radio button 分成兩欄 */

.radio-label-div2 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px; /* 增加间距 */
  cursor: pointer;
  padding: 12px 15px; /* 增加内边距 */
  border-radius: 8px; /* 增加圆角 */
  border: 1px solid var(--border-color);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.radio-label-div2:hover {
  background-color: #f9f9f9;
}

.radio-label-div2 input[type="radio"] {
  margin-right: 12px; /* 增加与文字的间距 */
  transform: scale(1.2); /* 稍微放大单选按钮 */
}

.radio-label-div2 input[type="radio"]:checked + span {
  font-weight: 600;
  color: var(--primary-color);
}

.radio-label-div2.selected {
  /* For JS to highlight */
  background-color: #e8f8f7;
  border-color: var(--primary-color);
}

.radio-label-div2 {
  width: calc(50% - 15/2px); /* 每欄佔一半，扣除邊距 */
  box-sizing: border-box;
}

.radio-2col-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

/* Checkbox button label styling */
.checkbox-label {
  display: block;
  margin-bottom: 15px; /* 增加间距 */
  cursor: pointer;
  padding: 12px 15px; /* 增加内边距 */
  border-radius: 8px; /* 增加圆角 */
  border: 1px solid var(--border-color);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.checkbox-label:hover {
  background-color: #f9f9f9;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 12px; /* 增加与文字的间距 */
  transform: scale(1.2); /* 稍微放大单选按钮 */
}

.checkbox-label input[type="checkbox"]:checked + span {
  font-weight: 600;
  color: var(--primary-color);
}

.checkbox-label.selected {
  /* For JS to highlight */
  background-color: #e8f8f7;
  border-color: var(--primary-color);
}
/* edited by 李翊嘉 結束*/

/* Dashboard specific styles */
.dashboard-content {
  padding: 15px; /* Add padding for smaller screens */
}

@media (min-width: 769px) {
  .dashboard-content {
    padding: 20px; /* Restore default padding for larger screens */
  }
}

/* Index page specific styles */
.index-container {
  padding: 40px; /* Increase padding */
}

.app-title h1 {
  font-size: 2.8em; /* Increase title font size */
  margin-bottom: 10px;
}

.app-title p {
  font-size: 1.1em; /* Increase subtitle font size */
  color: #555;
}

.description p {
  font-size: 1.05em; /* Increase description font size */
  line-height: 1.7;
}

.page-list {
  grid-template-columns: repeat(
    auto-fill,
    minmax(220px, 1fr)
  ); /* Adjust grid item size */
  gap: 20px; /* Increase gap */
}

.page-item {
  padding: 20px; /* Increase padding */
}

.page-item i {
  font-size: 2.2em; /* Increase icon size */
}

.page-item h3 {
  font-size: 1.1em; /* Increase item title size */
  margin-bottom: 8px;
}
.page-item p {
  font-size: 0.9em; /* Adjust item description size */
}

/* Content Mode Selection specific styles */
.content-mode-container {
  padding: 20px;
  max-width: 800px; /* Increase max-width */
  margin: 20px auto;
}

/* Onboarding Page.2 螢幕使用時長滑竿設定 */
.slider {
  width: 100%;
  appearance: none;
  height: 8px;
  border-radius: 5px;
  background: #ddd;
  outline: none;
  margin: 10px 0;
}

.slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: var(--primary-color, #4CAF50);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
  font-size: 0.8em;
  color: #666;
}

.screen-output {
  font-weight: bold;
  margin-top: 5px;
  text-align: center;
  color: #444;
}

/* checkbox-free */
.checkbox-free-label {
  display: inline-block;
  margin: 6px 8px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  background-color: white;
  transition: all 0.2s ease;
  font-size: 15px;
}

.checkbox-free-label input[type="checkbox"],
.checkbox-free-label input[type="radio"] {
  margin-right: 6px;
  vertical-align: middle;
}

.checkbox-free-label:hover {
  border-color: #888;
  background-color: #f5f5f5;
}

.checkbox-free-label input:checked + span {
  font-weight: bold;
  color: #007bff;
}
