html {
	height: 100%;
	width: 100%;
}
 
body {
	background-image: url("/static/sonuma-background.jpg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top;
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	margin: 0px;
}
 
#content-wrapper {
	height: 100%;
	width: 100%;
	background-color: hsla(0, 0%, 39%, .7);
}
 
#content {
	height: 100%;
	width: 100%;
	background-color: rgba(255,255,255,0.01);
}
 
#center-content-wrapper {
	width: 100%;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: x-large;
	font-family: Roboto, Helvetica Neue, sans-serif;
	text-align: center;
}
 
#center-content {
	width: 50vw;
	text-align: start;
	margin: auto;
}
 
#technical-data ul {
	font-size: large;
}
 
#main-logo {
	display: block;
	margin: auto;
	height: 100px;
	padding: 20px 40px 20px 30px;
}
 
.dateSeconds {
	font-size: large;
}
 
 
/* ------------------------------------------------------------
   CARTE — #center-content devient une carte blanche arrondie
   ------------------------------------------------------------ */
 
#center-content {
	background: rgba(255, 255, 255, 0.97);
	border-radius: 12px;
	overflow: hidden;
	padding: 0;
}
 
 
/* ------------------------------------------------------------
   EN-TÊTE — socle commun aux deux variantes
   ------------------------------------------------------------ */
 
#page-header {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 1.25rem 1.75rem;
	border-bottom: 1px solid;
}
 
#header-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #ffffff;
	border: 1px solid;
	display: flex;
	align-items: center;
	justify-content: center;
}
 
#header-title-block {
	flex: 1;
	min-width: 0;
}
 
#header-code-label {
	display: block;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	margin-bottom: 2px;
}
 
#header-message {
	font-size: 18px;
	font-weight: 500;
	color: #1a1a18;
	margin: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
 
/* Logo dans l'en-tête — surcharge la règle de base #main-logo */
#page-header #main-logo {
	display: block;
	height: 52px;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
}
 
 
/* ------------------------------------------------------------
   EN-TÊTE — variante ERREUR  (.header--error)
   ------------------------------------------------------------ */
 
#page-header.header--error {
	background-color: #fef2f2;
	border-bottom-color: #fecaca;
}
 
#page-header.header--error #header-icon {
	border-color: #fca5a5;
	color: #dc2626;
}
 
#page-header.header--error #header-code-label {
	color: #dc2626;
}
 
 
/* ------------------------------------------------------------
   EN-TÊTE — variante INFO  (.header--info)
   ------------------------------------------------------------ */
 
#page-header.header--info {
	/* Couleur bleutée */
	/*background-color: #eff6ff;
	border-bottom-color: #bfdbfe;*/
	border-bottom-color: rgba(0, 0, 0, 0.3);

}
 
#page-header.header--info #header-icon {
	border-color: #93c5fd;
	color: #2563eb;
}
 
/* Pas de #header-code-label en mode info,
   le message est seul donc légèrement plus grand */
#page-header.header--info #header-message {
	font-size: 17px;
}
 
 
/* ------------------------------------------------------------
   BARRE URL
   ------------------------------------------------------------ */
 
#url-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: .65rem 1.75rem;
	border-bottom: 1px solid rgba(0, 0, 0, 0.07);
	color: #7a7870;
}
 
#url-bar code {
	font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, monospace;
	font-size: 13px;
	color: #5a5a56;
	word-break: break-all;
}
 
 
/* ------------------------------------------------------------
   INFORMATIONS TECHNIQUES
   ------------------------------------------------------------ */
 
#technical-data {
	padding: 1.25rem 1.75rem;
}
 
#technical-data h3 {
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .07em;
	text-transform: uppercase;
	color: #9a9890;
	margin: 0 0 10px 0;
}
 
#detail-list {
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
}
 
.detail-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 0;
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	list-style: none;
}
 
.detail-row:last-child {
	border-bottom: none;
}
 
.detail-row--wrap {
	align-items: flex-start;
}
 
.detail-icon {
	flex-shrink: 0;
	color: #aaa89e;
	margin-top: 1px;
}
 
.detail-row dt {
	font-size: 13px;
	color: #7a7870;
	min-width: 130px;
	flex-shrink: 0;
	font-weight: normal;
}
 
.detail-row dd {
	font-size: 13px;
	color: #1a1a18;
	font-family: ui-monospace, "Cascadia Code", "Source Code Pro", Menlo, monospace;
	word-break: break-all;
	line-height: 1.5;
	margin: 0;
}
 
.detail-row .dateSeconds {
	font-size: 13px;
	color: #9a9890;
}
 
 
/* ------------------------------------------------------------
   RESPONSIVE
   ------------------------------------------------------------ */
 
@media (max-width: 1050px) {
	#center-content {
		width: 90vw;
	}
} 

@media (max-width: 768px) {
	#header-message {
		font-size: 15px;
		white-space: normal;
	}
 
	
	.detail-row dt {
		min-width: 100px;
	}
} 
@media (max-width: 500px){
	#page-header #main-logo {
		display: none;
	} 
	
}