.lists {
  list-style-type: none;
  padding: 0;
}
  .lists li {
    margin: 0 0 12px 0;   
    padding: 14px 18px;
    border-radius: 16px;
    border: 1px solid var(--color-border);
    background-color: var(--color-surface-muted);
    position: relative;
  }
  .lists .list-option {
    position: relative;
    display: block;
    min-height: 24px;
  }
  .lists .list-option input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  .lists .checkbox-modern {
    display: block;
    padding-left: 38px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    line-height: 1.4;
  }
  .lists .checkbox-modern::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 8px;
    border: 2px solid var(--color-border);
    background-color: var(--color-surface);
    transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6), 0 2px 6px rgba(15, 19, 36, 0.08);
  }
  .lists .checkbox-modern::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 5px;
    width: 7px;
    height: 12px;
    border: 2px solid transparent;
    border-left: none;
    border-top: none;
    transform: rotate(45deg) scale(0.6);
    transition: border-color 150ms ease, transform 150ms ease;
  }
  .lists .list-option input[type="checkbox"]:focus + .checkbox-modern::before {
    box-shadow: 0 0 0 4px rgba(63, 174, 148, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border-color: var(--color-primary);
  }
  .lists .list-option input[type="checkbox"]:checked + .checkbox-modern::before {
    border-color: transparent;
    background: linear-gradient(135deg, var(--color-primary), #45c7a7);
  }
  .lists .list-option input[type="checkbox"]:checked + .checkbox-modern::after {
    border-color: #fff;
    transform: rotate(45deg) scale(1);
  }
  .lists .description {
    margin: 0 0 15px 0;
    font-size: 0.875em;
    line-height: 1.3rem;
    color: #888;
    margin-left: 38px;
  }