#poetry {
	margin-left: 30px;
	background: black;
	color: white;
}

ul {
	list-style-type: square;
}

h3 {
	font-size: 1.5em;
}

table {
	width:100%;
}
table, td {
	border: 1px solid black;
	border-collapse: collapse;
}
th, td {
	padding: 15px;
	text-align: left;
}
table tr:nth-child(even) {
	background-color: #eee;
	color: black;
}
table tr:nth-child(odd) {
 background-color: #fff;
 color: black;
}
table th {
	border: 1px solid black;
	background-color: rgb(255,255,240);
	color: black;
	font-weight: bolder;
}

.datasource{
	visibility: hidden;
}

.MetaDataContainer{
	position: absolute;
	border-radius: 5px 5px 5px 5px;
	box-shadow: 0px 0px 20px #aaa;
	height: auto;
	left: 0px; 
	max-width: 300px; 
	top: 0px;
	background: rgb(255,255,240);
	opacity: .8;
	z-index: -1;
	visibility: hidden;
}

.MetaDataContainer p[ref='phototitle'] {
 text-align: justify;
 font-size: 1em;
 font-weight: bolder;
 color: black;
 margin-top: 5px;
 margin-left: 5px;
 margin-right: 5px;
}

.MetaDataContainer table {
 	margin-top: 5px;
	width:100%;
}

.MetaDataContainer table, td {
	border: 1px solid black;
	border-collapse: collapse;
}

.MetaDataContainer th, td {
	padding: 5px;
}

.MetaDataContainer .icon {
	text-align: center;
}

.MetaDataContainer img {
	width: 20px;
}

.w3-third img:hover{
	border-radius: 10px;
	box-shadow: 0 4px 20px 0 white, 0 6px 50px  0 ivory;
}

#PageCounter::before
{
	content: "\00a0\2014\00a0Visites : ";
}

#PageRelease::before
{
	content: "Publié le : ";
}


#eu_origin_request
{
	display: none;
}

#eu_origin_request::before{
	content: ''; 
	display: inline-block;
	width: 32px;
	height: 32px;
	background-image: url('/assets/v1/img/flags/eu.png');
	background-size: cover; /* or 'cover' or '32px 32px' */
	background-repeat: no-repeat;
	vertical-align: middle;
}

#eu_origin_request::after
{
	content: " ";
}

#trusted_client{
	display: none;

}

#trusted_client::before
{
	content: ''; 
	display: inline-block;
	width: 48px;
	height: 48px;
	background-image: url('/assets/v1/img/icons/trusted_client.png');
	background-size: cover; /* or 'cover' or '32px 32px' */
	background-repeat: no-repeat;
	vertical-align: middle;
}

p.error {
	
	height: 100%;
	height: 50vh; /* Full viewport height */

	display: flex;
	justify-content: center;  /* horizontal centering */
	align-items: center;  
	
	display: flex;
	background-color: #f8d7da; /* Light red shade */
	color: #721c24;            /* Optional: dark red text for contrast */
	padding: 0.5em;            /* Optional: adds spacing around text */
	border-radius: 10px;        /* Optional: softens the corners */
	margin: 10px;
	
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
 
}