#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: " - Visites : ";
}

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

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

#TrustedClient::before
{
	content: " - ";
}

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%)
 
}