/**
 *
 * Topic Badges. An extension for the phpBB Forum Software package.
 *
 * @copyright (c) 2026 dmzx <https://www.dmzx-web.net>
 * @license GNU General Public License, version 2 (GPL-2.0)
 *
 */

.tb-badge {
	display: inline-block;
	margin: 1px 4px 1px 0;
	padding: 0 4px;
	border: 1px solid transparent;
	border-radius: 3px;
	font-weight: bold;
	font-size: 0.9em;
	line-height: 1.5;
	text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
	text-decoration: none;
	vertical-align: baseline;
	white-space: nowrap;
}

a.tb-badge:hover,
a.tb-badge:focus {
	text-decoration: none;
	filter: brightness(1.08);
}

.tb-badge .icon {
	margin-right: 3px;
	font-size: 0.95em;
}

.tb-badge-img {
	display: inline-block;
	margin-right: 4px;
	vertical-align: middle;
}

.tb-badge-image {
	max-height: 1.6em;
	vertical-align: middle;
}

.topic-title .tb-badge {
	font-size: 0.7em;
	vertical-align: middle;
}

.tb-switcher {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
	margin: 2px 0 8px;
	font-size: 0.95em;
}

.tb-switcher select {
	max-width: 100%;
	color: inherit;
}

.tb-switcher select option {
	color: #1f2933;
}

.tb-switcher-label {
	font-weight: bold;
}

.tb-chips {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
}

.tb-chip {
	display: inline-flex;
	align-items: center;
}

.tb-chip .tb-badge {
	margin-right: 0;
}

.tb-chip-remove {
	margin-left: 3px;
	padding: 0 5px;
	border: 1px solid rgba(188, 42, 77, 0.45);
	border-radius: 3px;
	background: rgba(188, 42, 77, 0.08);
	color: #bc2a4d;
	font-size: 1em;
	font-weight: bold;
	line-height: 1.3;
	cursor: pointer;
}

.tb-chip-remove:hover,
.tb-chip-remove:focus {
	background: #bc2a4d;
	color: #ffffff;
}

.tb-picker {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px;
}

.tb-picker select {
	color: inherit;
}

.tb-picker select option {
	color: #1f2933;
}
