<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 
 | views\reports\index.php 
 | CSS for list of reports
 */

 table#table-report-list th {
    font-size: 0.8rem;
}

table#table-report-list thead th {
    border: 1px solid #ddd;
    text-align: center;
    background-color: #f7f7f7;
}

table#table-report-list th:first-child, 
table#table-report-list td:first-child {
    text-align: center;
    width: 3rem;
}

table#table-report-list th:nth-child(2), 
table#table-report-list td:nth-child(2) {
    text-align: center;
    width: 6rem;
}

/*
 | views\reports\...\create.php
 | CSS for form input before generating report
 */
div#report-selection-wrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color:black;
}
@media (min-width: 576px) {
    div#report-selection-wrapper .form-control {
        width: auto;
        min-width: 200px;
    }
}

input#start_date, 
input#end_date {
    font-family: var(--font-family-sans-serif), FontAwesome;
}

/*
 | views\reports\...\show.php OR template
 | for report
 */
div#report-wrapper{
    color: black;
    margin-inline: 10px;
}

div#report-wrapper table th {
    vertical-align: middle;
}

/* For column No. */
div#report-wrapper table.table-col-no td:first-child {
    text-align: center;
}

/* div containing print button and excel button */
div.save-wrapper {
    position: absolute;
    right: 1rem;
}

/* Simulate bootstrap 4 table-bordered class */
.table-bordered-black {
    border: 1px solid #000;
}

.table-bordered-black th,
.table-bordered-black td {
    border: 1px solid #000;
}

.table-bordered-black thead th,
.table-bordered-black thead td {
    border-bottom: 1px solid #000;
    /* TODO fix if thead have rowspan and multiple rows */
    /*border-bottom: 2px solid #000;*/
}

/* Print */
@media print {
    div.table-responsive {
        overflow-x: visible; 
    }
}
</pre></body></html>