/*
 * This file is for print-specific styles.
 * It is linked in view_all_individuals.php with media="print"
 */

/* Hide elements not needed for printing */
.navbar,
.search-form,
.message,
.pagination,
.button,
.dashboard-actions,
.no-print,
.print-button-container {
    display: none;
}

/* Ensure the print criteria and table are visible and formatted for printing */
body {
    font-family: Arial, sans-serif;
    color: #000;
    margin: 0;
    padding: 20px;
}

.container {
    width: 100%;
    margin: 0;
    padding: 0;
}

h1 {
    font-size: 24px;
    text-align: center;
}

h2 {
    font-size: 18px;
}

p {
    text-align: left;
}

.print-criteria {
    display: block; /* Make this block visible */
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #000;
    padding: 8px;
    text-align: left;
}

thead {
    background-color: #f2f2f2;
}

.print-only {
    display: block;
}