.custom-page-title {
    width: 100%;
    padding: 20px;
    font-size: 20px;
    background-color: silver;
    color: white;
    font-weight: bold;
	display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-page-title-text {
    text-shadow: 2px 1px 3px #000000;
}

.custom-summary-modal {
	position: fixed;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    width: 500px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 6px 6px #777;
    padding: 20px;
}

.custom-chart-dash-box {
    background-color: #fff;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: 0px 1px 15px 1px rgba(69, 65, 78, 0.08);
}

.custom-chart-dash-box table>tbody>tr>td, .table>tbody>tr>th, .table>thead>tr>td, .table>thead>tr>th {
	border-bottom: 2px solid whitesmoke;
}

.custom-overlay {
	background-color: black;
	opacity: 0.5;
	position: fixed;
	inset: 0;
}

#mainFiltersBox .reportSidebarSubTitle{
    background-color: #e9e9e9;
    padding: 10px;
    border: 0px;
    border-top-left-radius: 10px;
	border-top-right-radius: 10px;	
	display: flex;
	align-items: center;
}

#mainFiltersBox label {
	display: block;
	margin-bottom: 0px;
	padding-left: 14px;
	font-weight: normal;
	font-size: 14px;
}

#mainFiltersBox .top-label {
	font-weight: bold;
	font-size: 15px;
}

#mainFiltersBox input[type=checkbox] {
	margin-bottom: 4px;
}

#mainFiltersBox .custom-checkbox {
	display: flex;
	align-items: center;
	margin-bottom: 4px;
}

#mainFiltersBox .reportSidebarRow {
    background-color: #e9e9e9;
    padding: 10px;
	border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.select2-container {
    width: 100% !important;
}
.select2-selection__choice {
    background-color: white !important;
    color: black;
    border: 2px solid silver !important;
}
.select2-search.select2-search--inline, .select2-container--default .select2-search--inline .select2-search__field {
    width: 100% !important;
}

#matches_type_select {
    display: inline-block;
    width: fit-content;
	margin-top: 10px;
}

#matches_select2_container {
    width: 100%;
    margin-top: 10px;
}

#MatchesTableContainer, #FormsTableContainer, .FiltersTableContainer{
    max-height: 300px;
    overflow-y: auto;
    border-bottom: 1px solid silver;
    border-top: 1px solid silver;
}
#MatchesTable, #FormsTable, .FiltersTable {
    display: table;
	border-left: 1px solid silver;
	border-right: 1px solid silver;
	border-bottom: 1px solid silver;
    width: 100%;
}

.MatchesTableRow, .FormsTableRow, .FiltersTableRow {
    display: table-row;
}
.MatchesTableCell, .FormsTableCell, .FiltersTableCell {
    display: table-cell;
	padding: 5px;
    border-bottom: 1px solid silver;
}
.MatchesTableCell div.MatchesTableCellArea, .FormsTableCell div.FormsTableCellArea, .FiltersTableCell div.FiltersTableCellArea {
    display: inline-block;
    margin-right: 20px;
}
.MatchesTableIntest.MatchesTableRow .MatchesTableCell, .FormsTableIntest.FormsTableRow .FormsTableCell, .FiltersTableIntest.FiltersTableRow .FiltersTableCell, .FiltersTableIntest > div {
    font-weight: bold;
	background-color: silver;
    color: white;
}
.MatchesTableCell input, .FormsTableCell input, .FiltersTableCell input {
    vertical-align: top;
    margin-right: 5px;
}
.MatchesTableRow:last-child .MatchesTableCell, .FormsTableRow:last-child .FormsTableCell, .FiltersTableRow:last-child .FiltersTableCell {
    border-bottom: 0px;
}