/* Styl pro univerzální tlačítko */
.button-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: white;
	background-color: #2563eb;
	border-radius: 9999px;
	text-decoration: none;
	text-align: center;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.39);
}

/* Barva při najití na tlačítko */
.button-primary:hover {
	background-color: #1d4ed8;
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(37, 99, 235, 0.23);
}
