/* General print styles */
body {
    font-family: 'Cairo', sans-serif;
    color: #000 !important;
    background-color: #fff !important;
}

/* Hide elements that are not needed for print */
.nav,
.btn,
form,
#printBtn,
.no-print {
    display: none !important;
}

/* Ensure tab content is visible for printing */
.tab-content .tab-pane {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Style cards for print */
.card {
    border: 1px solid #dee2e6 !important;
    margin-bottom: 20px !important;
    page-break-inside: avoid;
}

.card-header {
    background-color: #f8f9fa !important;
    border-bottom: 1px solid #dee2e6 !important;
    font-weight: bold;
}

/* Ensure tables print correctly */
table {
    width: 100% !important;
    border-collapse: collapse !important;
}

th, td {
    border: 1px solid #dee2e6 !important;
    padding: 8px !important;
    text-align: right !important; /* Right-align for Arabic */
}

thead {
    display: table-header-group; /* Repeat headers on each page */
}

/* Remove chart animations and ensure they are sized for print */
canvas {
    max-width: 100% !important;
    height: auto !important;
}

h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
}

a {
    text-decoration: none !important;
    color: #000 !important;
} 