﻿	.button-group .btn,
	.button-group .btn a {
		width: 150px; /* nastav dle potřeby */
		text-align: center;
	}

		.button-group .btn:hover,
		.button-group .btn a:hover {
			background-color: #0056b3; /* tmavší modrá při najetí */
		}

		.button-group .btn a {
			width: 100%;
			height: 100%;
		}

.button-group {
	display: flex;
	gap: 10px;
}

	.button-group .btn,
	.button-group .btn a {
		display: inline-block;
		width: 150px; /* pevná šířka pro všechny */
		padding: 10px 20px;
		background-color: #007BFF;
		color: white;
		text-decoration: none;
		border: none;
		border-radius: 6px;
		font-size: 14px;
		font-family: Arial, sans-serif;
		cursor: pointer;
		transition: background-color 0.3s ease;
		text-align: center;
		white-space: nowrap;
		box-sizing: border-box;
	}
