/**
 * Tamilcube Horoscope - Print Styles
 * Optimized for printing and save-as-PDF
 * UPDATED: Print isolation to hide WordPress theme
 */

/* ========================================
   PRINT MEDIA QUERY
   ======================================== */

@media print {
    /* Ultra-minimal test */
    * {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
    
    body {
        background: white;
    }
    
    /* Hide only the form */
    .tch-form {
        display: none !important;
    }
    
    /* Show results */
    .tch-results {
        display: block !important;
    }
}