@charset "ISO-8859-1";

/* Tables */
.table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
    border: 1px solid #000;
}

.table th, .table td {
    padding: 6px 8px;
    border: 1px solid #000;
    text-align: left;
    font-size: 18px;
    vertical-align: middle;
}

.table th {
    background-color: #304678 !important; /* darker gray */
    font-weight: bold;
    text-transform: uppercase;
    border:1px solid #000;
    color: #fff !important;
}

.table tr.total-row td {
    font-weight: bold;
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    
	.table{
		border: solid 1px #000;
	}
    
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

	.table, .table th, .table td {
	    border: 1.2px solid #000 !important; /* darker, thicker border */
        font-size: 14px;
	}

}
