@charset "utf-8";

/* ==========================================================================
   FischerFabrik – Modernes Theme für Buttons
   Selektoren wie im Original (icon-btn, floating-btn, dot-btn, xs, s)
   Verwendet die Variablen aus style.css (--color-primary etc.)
   ========================================================================== */

/* Icon-Button */
.icon-btn,
.icon-btn:link,
.icon-btn:visited {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 48px;
	height: 48px;
	padding: 8px;
	font-size: 22px;
	text-align: center;
	color: rgb(148,163,184);
	text-decoration: none;
	border-radius: var(--radius-md, 12px);

	transition: color .2s ease, background-color .2s ease;
}

.icon-btn:hover,
.icon-btn:focus,
.icon-btn:active,
.icon-btn.active {
	color: var(--color-primary-dark, rgb(14,116,144));
	background-color: var(--color-primary-light, rgba(6,182,212,0.1));
}

.icon-btn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* Floating-Button */
a.floating-btn,
a.floating-btn:link,
a.floating-btn:visited {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 52px;
	height: 52px;
	padding: 8px;
	font-size: 24px;
	color: rgb(255,255,255);
	text-align: center;
	background-color: var(--color-primary, rgb(6,182,212));
	border-radius: 50px;
	text-decoration: none;
	box-shadow: var(--shadow-primary, 0 4px 10px rgba(6,182,212,0.35));

	transition: background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

a.floating-btn:hover,
a.floating-btn:focus,
a.floating-btn:active,
a.floating-btn.active {
	color: rgb(255,255,255);
	background-color: var(--color-primary-dark, rgb(14,116,144));
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(6,182,212,0.4);
}

a.floating-btn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

/* Dot-Button */
a.dot-btn,
a.dot-btn:link,
a.dot-btn:visited {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	padding: 8px;
	font-size: 22px;
	text-align: center;
	color: rgb(148,163,184);
	text-decoration: none;

	background-color: rgb(241,245,249);
	border-radius: 50%;

	transition: color .2s ease, background-color .2s ease;
}

a.dot-btn:hover,
a.dot-btn:focus,
a.dot-btn:active,
a.dot-btn.active {
	color: rgb(255,255,255);
	background-color: var(--color-primary, rgb(6,182,212));
}

a.dot-btn::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

a.icon-btn.xs,
a.dot-btn.xs {
	width: 24px;
	height: 24px;
	padding: 4px;
	font-size: 12px;
	line-height: 14px;
}

a.icon-btn.s,
a.dot-btn.s {
	width: 40px;
	height: 40px;
	padding: 4px;
	font-size: 16px;
	line-height: 28px;
}
