﻿.trip-card {
	background: #fff;
	border: 1px solid #ddd;
	border-left: 6px solid #ccc;
	padding: 16px;
	margin: 12px 0;
	border-radius: 6px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
	transition: box-shadow 0.3s ease;
}

	.trip-card:hover {
		box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	}

.trip-header {
	display: flex;
	align-items: center;
	gap: 8px;
}

.trip-title {
	margin: 0;
	font-size: 1.4em;
	color: #333;
}

	.trip-title a {
		color: var(--link-color);
		/*text-decoration: none;*/
		font-weight: 600;
		font-size: 1.3em;
		transition: color 0.3s ease, text-shadow 0.3s ease;
	}

		.trip-title a:hover {
			color: var(--link-hover-color);
			text-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
		}


.difficulty-strip {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	display: inline-block;
}

.difficulty-veryeasy {
	background-color: limegreen;
}

.difficulty-easy {
	background-color: deepskyblue;
}

.difficulty-medium {
	background-color: gold;
}

.difficulty-challenging {
	background-color: orange;
}

.difficulty-hard {
	background-color: red;
}

.difficulty-extreme {
	background-color: black;
}

.trip-meta {
	font-size: 0.9em;
	color: #666;
	margin: 8px 0;
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.trip-description {
	margin: 8px 0;
	font-size: 1em;
	color: #444;
}

.trip-tags {
	margin: 8px 0;
}

.tag {
	background-color: #eee;
	border-radius: 12px;
	padding: 4px 10px;
	margin-right: 6px;
	font-size: 0.85em;
	display: inline-block;
}

.btn-detail {
	display: inline-block;
	background-color: #0078d7;
	color: white;
	padding: 8px 12px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	transition: background-color 0.3s ease;
}

	.btn-detail:hover {
		background-color: #005fa3;
	}

/* Napoveda */
.modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.modal-content {
	background: white;
	padding: 20px;
	border-radius: 8px;
	max-width: 500px;
	text-align: left;
}

.modal-overlay.active {
	display: flex;
}

.difficulty-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 10px;
}

	.difficulty-table th,
	.difficulty-table td {
		padding: 8px 12px;
		border-bottom: 1px solid #ddd;
		text-align: left;
	}

	.difficulty-table th {
		background-color: #f5f5f5;
		font-weight: bold;
	}

.help-center {
	vertical-align: middle;
	text-align: center;
}
.difficulty-strip {
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 3px;
	margin-right: 6px;
}

.difficulty-none {
	background-color: white;
	border: 1px solid black;
}

.difficulty-veryeasy {
	background-color: limegreen;
}

.difficulty-easy {
	background-color: deepskyblue;
}

.difficulty-medium {
	background-color: gold;
}

.difficulty-challenging {
	background-color: orange;
}

.difficulty-hard {
	background-color: red;
}

.difficulty-extreme {
	background-color: black;
}

/* Filtr podle regionu v seznamu */

/* Obecný wrapper pro filtr */
.filter-group {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-bottom: 20px;
	align-items: center;
}

	/* Popisky */
	.filter-group label {
		font-weight: 500;
		color: var(--label-color);
		margin-right: 6px;
	}

	/* DropDownList styl */
	.filter-group select {
		padding: 6px 12px;
		border: 1px solid var(--border-color);
		border-radius: 4px;
		background-color: var(--input-bg);
		color: var(--input-text);
		font-size: 1em;
		transition: border-color 0.3s ease;
	}

		.filter-group select:focus {
			border-color: var(--accent-color);
			outline: none;
		}

	/* Tlačítko */
	.filter-group .btn-random {
		padding: 8px 14px;
		background-color: var(--accent-color);
		color: white;
		border: none;
		border-radius: 4px;
		font-weight: bold;
		cursor: pointer;
		transition: background-color 0.3s ease;
	}

		.filter-group .btn-random:hover {
			background-color: var(--accent-hover);
		}
