/**
 * Chapter Status Checkboxes
 * Custom styling for chapter status checkboxes that replace the Audio button
 */

/* Audio Status Checkbox */
.audio-status-checkbox {
  display: flex;
  align-items: center;
  margin: 0;
  cursor: pointer;
  padding: 6px 10px;
  background: transparent;
  border: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.audio-status-checkbox:hover {
  background: rgba(16, 185, 129, 0.1);
}

/* Checkbox Input */
.audio-status-checkbox input[type="checkbox"] {
  margin-right: 6px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: #10b981;
}

/* Checkbox Label */
.audio-status-checkbox .checkbox-label {
  font-size: 13px;
  margin: 0;
  cursor: pointer;
  color: white;
  font-weight: 500;
  user-select: none;
}

/* Checked State */
.audio-status-checkbox input[type="checkbox"]:checked + .checkbox-label {
  color: #10b981;
  font-weight: 600;
}

/* Status Badges */
.chapter-title .status-badge {
  font-size: 10px;
  font-weight: bold;
  padding: 2px 4px;
  border-radius: 3px;
  margin-left: 5px;
  color: white;
  display: inline-block;
}

/* Editing Complete Badge */
.chapter-title .status-badge:first-of-type {
  background-color: #4caf50;
}

/* Audio Complete Badge */
.chapter-title .status-badge:nth-of-type(2) {
  background-color: #2196f3;
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .status-checkboxes {
    padding: 4px 6px;
  }
  
  .checkbox-container label {
    font-size: 11px;
  }
}