/* recipe_premium_content_styles.css - Add print protection */

@media print {
  #premium-content-container {
    display: none !important;
  }
  
  body::after {
    content: "This exclusive recipe cannot be printed. Please use the Pick Up Limes app to save recipes for offline use.";
    display: block;
    padding: 2rem;
    text-align: center;
    font-size: 1.5rem;
    page-break-before: always;
  }
}