<style>
/* First block added at guide level to override Div display block on chrome */
.checklist {
  font-family: inherit;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.checklist-item {
  background-color: #f8d7da; /* Pale red */
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #f5c2c7;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 calc(50% - 20px); /* Two columns with gap */
  box-sizing: border-box;
}

.checklist-item.checked {
  background-color: #d4edda; /* Light green */
  border-color: #c3e6cb;
  box-shadow: 0 0 10px rgba(76, 175, 80, 0.3);
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
}

/* Visible, large checkbox with black tick */
.checkbox-container input[type="checkbox"] {
  width: 25px;
  height: 25px;
  accent-color: black;
  cursor: pointer;
}

/* Focus style for keyboard users */
.checkbox-container input[type="checkbox"]:focus {
  outline: 2px solid #005fcc;
  outline-offset: 2px;
}

/* Responsive fallback for small screens */
@media (max-width: 768px) {
  .checklist-item {
    flex: 1 1 100%;
  }
}

</style>