@charset "utf-8";
  .clean-strike {
    /* Set the line: line-through, black color, and solid style */
    text-decoration: line-through #000000 solid;
    
    /* Remove any shadows that might make it look blurry */
    text-shadow: none;
    
    /* Ensure the text itself is also solid black */
    color: #000000;
    
    /* Optional: Controls the thickness of the line */
    text-decoration-thickness: 2px;
    
    /* Adds a little padding so the div doesn't feel cramped */
    padding: 10px;
  }
