/* استایل‌های چاپ جذاب */
.print-section {
    display: none;
}

@media print {
    body {
        background: white !important;
        font-family: 'B Mitra', 'B Nazanin', Vazir, Tahoma, sans-serif !important;
    }
    
    body * {
        visibility: hidden;
        background: white !important;
        color: black !important;
    }
    
    .print-section, .print-section * {
        visibility: visible;
        background: white !important;
        color: black !important;
    }
    
    .print-section {
        display: block;
        width: 100%;
        font-family: 'B Mitra', 'B Nazanin', Tahoma, sans-serif;
        font-size: 12pt;
        margin: 0;
        padding: 0;
        position: absolute;
        top: 0;
        left: 0;
        background: white;
        box-shadow: none;
    }
    
    /* هدر چاپ */
    .print-header {
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 3px double #d81b60;
        background: white !important;
        color: black !important;
        page-break-after: avoid;
    }
    
    .print-logo {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .print-logo-icon {
        font-size: 2.5rem;
        color: #d81b60 !important;
    }
    
    .print-title {
        font-size: 20pt;
        font-weight: bold;
        margin-bottom: 10px;
        color: #d81b60 !important;
        text-shadow: none !important;
    }
    
    .print-subtitle {
        font-size: 14pt;
        color: #666 !important;
        margin-bottom: 5px;
    }
    
    .print-info {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
        font-size: 11pt;
        color: #444 !important;
    }
    
    /* جدول چاپ */
    .print-table {
        width: 100%;
        border-collapse: collapse;
        margin: 25px 0;
        font-size: 11pt;
        page-break-inside: avoid;
    }
    
    .print-table th {
        background-color: #fce4ec !important;
        color: #ad1457 !important;
        font-weight: bold;
        padding: 12px 8px;
        text-align: center;
        border: 1px solid #f8bbd0;
    }
    
    .print-table td {
        padding: 10px 8px;
        text-align: center;
        border: 1px solid #f8bbd0;
        page-break-inside: avoid;
    }
    
    .print-table tr:nth-child(even) {
        background-color: #fef5f9 !important;
    }
    
    .print-table tr:hover {
        background-color: #fce4ec !important;
    }
    
    /* نامه‌های چاپ */
    .letter-print {
        page-break-after: always;
        margin-bottom: 40px;
        padding: 25px;
        border: 2px solid #f8bbd0;
        border-radius: 15px;
        background: white !important;
        box-shadow: 0 4px 12px rgba(216, 27, 96, 0.1);
    }
    
    .letter-print:last-child {
        page-break-after: auto;
    }
    
    .letter-print h3 {
        color: #d81b60 !important;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid #f8bbd0;
    }
    
    .letter-print pre {
        font-family: 'B Nazanin', 'B Mitra', Tahoma, sans-serif;
        font-size: 13pt;
        line-height: 2;
        text-align: justify;
        white-space: pre-wrap;
        margin: 20px 0;
    }
    
    .letter-print p {
        text-align: left;
        margin-top: 20px;
        font-size: 11pt;
        color: #666 !important;
    }
    
    /* کارت عضویت چاپ */
    .membership-print {
        page-break-after: always;
        border: 3px solid #d81b60;
        border-radius: 20px;
        padding: 30px;
        margin: 40px auto;
        max-width: 90%;
        background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%) !important;
        box-shadow: 0 8px 25px rgba(216, 27, 96, 0.2);
    }
    
    .membership-print h2 {
        color: #d81b60 !important;
        text-align: center;
        margin-bottom: 25px;
        font-size: 22pt;
    }
    
    .membership-print p {
        margin: 10px 0;
        font-size: 12pt;
        color: #333 !important;
    }
    
    .membership-print strong {
        color: #ad1457 !important;
    }
    
    /* فوتر چاپ */
    .print-footer {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #ccc;
        font-size: 10pt;
        color: #666 !important;
        page-break-before: avoid;
    }
    
    /* جلوگیری از شکستن در وسط ردیف‌ها */
    .print-table tr {
        page-break-inside: avoid;
        page-break-after: auto;
    }
    
    /* تنظیم حاشیه‌ها */
    @page {
        margin: 1.5cm;
        size: A4;
    }
    
    /* شماره صفحه */
    .page-number:after {
        content: "صفحه " counter(page);
        position: absolute;
        bottom: 1cm;
        left: 0;
        right: 0;
        text-align: center;
        font-size: 10pt;
        color: #666;
    }
}
