/* custom-color-overrides.css */
/* यह file create करें: /wp-content/themes/Lsc-Infratech/assets/css/custom-color-overrides.css */

:root {
    --theme-primary: #0070AD;
    --theme-secondary: #1C1C1C;
    --theme-heading: #333333;
    --bg-color: #ffffff;
    --text-color: #666666;
}

/* Override any theme colors here */
.custom-color-override {
    /* Your custom color overrides */
}

/* print.css */
/* यह file create करें: /wp-content/themes/Lsc-Infratech/assets/css/print.css */

@media print {
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: #000;
        background: #fff;
    }
    
    .no-print {
        display: none !important;
    }
    
    a {
        text-decoration: none;
        color: #000;
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
}