/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

/* Checkered background for transparent images */
.checkered-bg {
  background-image: 
    linear-gradient(45deg, #f3f4f6 25%, transparent 25%), 
    linear-gradient(-45deg, #f3f4f6 25%, transparent 25%), 
    linear-gradient(45deg, transparent 75%, #f3f4f6 75%), 
    linear-gradient(-45deg, transparent 75%, #f3f4f6 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

