*
{
    margin: 0;
    padding: 0;
}
body
{
    background-image: url(../image/pattern.png);
    background-repeat: repeat;
    background-size: inherit;
    background-attachment: inherit;
    background-position: 0 0;

}
.body-wrapper
{
    max-width: 1250px;
    margin: auto;
}
.logo
{
    padding: 25px 10px;
    background-color: #f7f7f7;
    height: max-content;
    display: block;
}
.logo img
{
    width: 100%;
    object-fit: cover;
}
.rs-banner
{
    background-color: #f7f7f7;
    border-bottom: 3px solid #14ad14;
    display: flex;
    justify-content: space-between;
    padding: 15px;
    margin-bottom: 35px;
}
.rs-list
{
    display: flex;
    
}
.rs-item
{
    color: rgb(151, 151, 151);
    margin: 0 10px;
}
.container
{
    background-color: #f7f7f7;
}
.container .entete
{
    padding: 10px;
}
.filter-table
{
    display: flex;
    align-items: center;
    margin-top: 70px;
}
.selects
{
    background-color: #fff;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
}
.selects select
{
    width: 150px;
    height: 40px;
    margin: 0 5px;
    border-radius: 5px;
    border: 1px solid silver;
    color: #646464;
    font-weight: bold;
}
button
{
    color: #fff;
    background-color: #14ad14;
    width: 150px;
    height: 40px;
    margin: 0 5px;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}
button:hover
{
    filter: brightness(.8);
}
table { 
	border-collapse: collapse; 
	margin:10px auto;
	}

/* Zebra striping */
tr:nth-of-type(odd) { 
	background: #eee; 
	}

th { 
	background: #14ad14; 
	color: white; 
	font-weight: bold; 
	}

td, th { 
	padding: 10px; 
	border: 1px solid #ccc; 
	text-align: left; 
	font-size: 18px;
	}

/* 
Max width before this PARTICULAR table gets nasty
This query will take effect for any screen smaller than 760px
and also iPads specifically.
*/
@media 
only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px)  {

	table { 
	  	width: 100%; 
	}

	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers (but not display: none;, for accessibility) */
	thead tr { 
		position: absolute;
		top: -9999px;
		left: -9999px;
	}
	
	tr { border: 1px solid #ccc; }
	
	td { 
		/* Behave  like a "row" */
		border: none;
		border-bottom: 1px solid #eee; 
		position: relative;
		padding-left: 50%; 
	}

	td:before { 
		/* Now like a table header */
		position: absolute;
		/* Top/left values mimic padding */
		top: 6px;
		left: 6px;
		width: 45%; 
		padding-right: 10px; 
		white-space: nowrap;
		/* Label the data */
		content: attr(data-column);

		color: #000;
		font-weight: bold;
	}

}