/*
Horizontal/vertical lines
https://www.phpbb.com/customise/db/style/prosilver_french_edition/support/topic/244267
*/
ul.topiclist dd {
	border-left-color:var(--color04);
}

li.row {
	border-top-color:var(--color14);
	border-bottom-color:var(--color04);
}

/*
Hide light/dark wheel
https://www.phpbb.com/customise/db/style/prosilver_french_edition/support/topic/246028
*/
li:has(#switch-theme) {
	display: none;
}


/*
Force dark theme
*/
html,
[data-theme=light] {
	--color01: yellowgreen;
	--color02: #222;
	--color03: #333;
	--color04: #444;
	--color05: #555;
	--color06: #666;
	--color07: #6b6b6b;
	--color08: #7b7b7b;
	--color09: #d31141;
	--color10: #6a1b2e;
	--color11: #fff;
	--color12: #ccc;
	--color13: #ddd;
	--color14: #000;
	--color15: #fff;
	--contact-icon: var(--dark-contact-icon);
	--online: var(--dark-online);
	--offline: var(--dark-offine);
	color-scheme: dark;
}

/*
[Board3 Portal extension] Centring paypal items
https://www.phpbb.com/customise/db/style/prosilver_french_edition/support/topic/246016
*/
.portal-centered-content [name="currency_code"] {
    margin: 3px auto;
    display: block;
}


/*
Change forum rules box colors
*/
div.rules {
    background-color: #B80000;
    color: #EEEEEE;
}



/*
Border radius Topic left icon
*/
.forum_link:before, .row-item[class*=_read]:before, .row-item[class*=_unread]:before, .topic_moved:before {
    left: 10px;
    line-height: 32px;
    width: 32px;
    height: 32px;
    font-size: 16px;
    text-align: center;
    border-radius: 10%;
}


/*
Rank bar adjustment
*/
.postprofile dt.no-profile-rank, .postprofile dd.profile-rank, .postprofile .search-result-date {
	margin-bottom: 5px;
	margin-top: -8px;
}