/* css/report_print.css */

body { 
    font-family: 'Segoe UI', Arial, sans-serif; 
    padding: 40px; 
    color: #333; 
    line-height: 1.6; 
}

.report-header { 
    text-align: center; 
    margin-bottom: 40px; 
}

.report-header h2 { 
    margin-bottom: 5px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.customer-info { 
    text-align: left; 
    margin-bottom: 20px; 
}

/* Clean Table - No Gridlines */
.custreptable { 
    width: 100%; 
    border-collapse: collapse; 
    margin-top: 20px; 
}

.custreptable th { 
    text-align: left; 
    padding: 12px 8px; 
    border-bottom: 2px solid #333; 
    text-transform: uppercase;
    font-size: 0.85em;
}

.custreptable td { 
    padding: 12px 8px; 
    border-bottom: 1px solid #ccc;
}

.text-right { text-align: right; }

.text-overdue { 
    color: #ff0000 !important; 
    font-weight: bold !important; 
}

.total-row { 
    font-size: 1.1em; 
    font-weight: bold; 
}

.total-row td { 
    border-top: 2px solid #333; 
    border-bottom: none; 
    padding-top: 15px; 
}
button {
    padding: 0.5rem;
    background-color: #2980B9;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 1rem;
}

button:hover {
    background-color: #0056b3;
}


@media print { 
    .no-print { display: none !important; }
    body { padding: 0; }
}