.clocks-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	margin: 20px 0;
}

.clock-group {
	background-color: #f9f9f9;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	flex: 1 1 300px;
	max-width: 350px;
}

.clock-item {
	padding: 8px 0;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dashed #eee;
}

.clock-item:last-child {
	border-bottom: none;
}

.region-title {
	color: salmon;
	margin-bottom: 15px;
	text-align: center;
}

.back-link {
	display: block;
	text-align: center;
	margin: 20px 0;
	padding: 10px;
	background-color: #f0f0f0;
	border-radius: 5px;
	text-decoration: none;
	color: #333;
	font-weight: bold;
}

.back-link:hover {
	background-color: #e0e0e0;
}