/* Taxonomy Buttons Shortcode Styles */
.tbs-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 1rem 0;
}

/* Type-specific wrapper styles */
.tbs-wrapper-btn {
	/* Button-specific wrapper styles - inherits flexbox from tbs-wrapper */
}

.tbs-wrapper-link {
	/* Link-specific wrapper styles - override flexbox for inline text flow */
	display: inline;
	flex-wrap: normal;
	gap: normal;
	margin: 0;
}

/* Alignment classes */
.tbs-align-left {
	justify-content: flex-start;
}

.tbs-align-center {
	justify-content: center;
}

.tbs-align-right {
	justify-content: flex-end;
}

/* Button styles */
.tbs-btn {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 1rem;
	background-color: #005a87;
	color: #ffffff;
	
	text-decoration: none;
	border-radius: 4px;
	font-size: 0.875rem;
	font-weight: 500;
	transition: all 0.2s ease-in-out;
	white-space: nowrap;
}
.tbs-btn:hover {
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	background-color: #0073aa;
	border: 1px solid transparent;
	color: #ffffff;
}

.tbs-btn:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Link styles */
.tbs-link {
	/* display: inline-flex; */
	/* align-items: center; */
	/* padding: 0.25rem 0.5rem; */

	background-color: rgba(0, 115, 170, 0.1);
	color: #005a87;
	text-decoration: underline;
	/* border-radius: 2px; */
	/* font-size: 0.875rem; */
	/* font-weight: 400; */
	transition: all 0.2s ease-in-out;
	/* border: none; */
	white-space: nowrap;
}

.tbs-link:hover {
	color: #005a87;
	text-decoration: none;
	transform: none;
	box-shadow: none;
}

/* Responsive design */
