/* Utilitaires globaux frontoffice */
.hidden { display: none; }

/* Adminbar : coins arrondis pour les sous-menus (no-op sans #wpadminbar) */
#wpadminbar .ab-sub-wrapper,
#wpadminbar ul,
#wpadminbar ul li {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

/* Shortcode Google News (pxn_gnews) */
a.google-news-button {
	text-decoration: none;
	font-weight: bold;
	display: inline-block;
	margin: 20px auto;
	background-color: #fff;
	color: #000;
	box-shadow: 0 2px 26px 0 rgba(0, 0, 0, .1);
}
.google-news-text {
	text-align: center;
	vertical-align: middle;
	padding: 2px 4px 2px 16px;
	display: inline-block;
}
.google-news-icon {
	display: inline-block;
	vertical-align: middle;
	margin-right: 8px;
}
/* Couleurs et hauteur du SVG Google News integrees directement dans les attributs SVG (fill=, height=) — independance du CSS externe */

/* Shortcode Child Pages (List Child Pages) */
ul.lcp { list-style-type: none; margin: 0; padding: 0; }
ul.lcp li { display: inline-block; }
ul.lcp li::after { padding-left: 4px; content: "»"; }
ul.lcp li:last-child::after { content: ""; }
ul.lcp .label { font-weight: bold; margin-right: 6px; }

/* Double scrollbar pour les tables larges (post-content) */
.pxn-table-top-scroll,
.pxn-table-bottom-scroll {
	scrollbar-width: thin;
	scrollbar-color: #888 #e0e0e0;
}
.pxn-table-top-scroll::-webkit-scrollbar,
.pxn-table-bottom-scroll::-webkit-scrollbar {
	height: 10px;
	background: #e0e0e0;
	border-radius: 5px;
}
.pxn-table-top-scroll::-webkit-scrollbar-thumb,
.pxn-table-bottom-scroll::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 5px;
}
.pxn-table-top-scroll::-webkit-scrollbar-thumb:hover,
.pxn-table-bottom-scroll::-webkit-scrollbar-thumb:hover {
	background: #555;
}
@media (max-width: 768px) {
	.pxn-table-top-scroll,
	.pxn-table-bottom-scroll {
		scrollbar-width: auto;
	}
	.pxn-table-top-scroll::-webkit-scrollbar,
	.pxn-table-bottom-scroll::-webkit-scrollbar {
		height: 14px;
	}
	.pxn-table-top-scroll::-webkit-scrollbar-thumb,
	.pxn-table-bottom-scroll::-webkit-scrollbar-thumb {
		background: #666;
		border: 2px solid #e0e0e0;
	}
}
