/* Base styles */
body {
  margin: 0;
  padding: 10px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Allow text selection for links and buttons */
a, button, input, textarea, [contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Combined route selector and stats */
#combined_selector_stats {
	position: relative;
	float: left;
	width: 350px;
	min-width: 350px;
	height: 500px;
	margin: 0px 10px 10px 0px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	border: 1px solid rgb(199, 199, 199);
	background: linear-gradient(135deg, #aa4d02 0%, #ffbf65 100%);
}

.route-header {
	font-size: 32px;
	font-weight: bold;
	color: white;
	text-align: center;
	padding: 10px 0px 0px 0px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
	flex-shrink: 0;
}

.route-selector {
	text-align: center;
	width: 100%;
	flex-shrink: 0;
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.route-wheel {
	height: 120px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.1);
}

.route-wheel-inner {
	display: flex;
	flex-direction: column;
	animation: scrollVertical var(--scroll-duration, 15s) linear infinite;
	padding: 10px;
}

.route-option {
	display: block;
	padding: 15px 5px 0px 5px;
	margin: 2px 0;
	text-decoration: none;
	color: white;
	background-color: rgba(255, 255, 255, 0.2);
	border-radius: 3px;
	transition: background-color 0.3s ease;
	font-size: 48px;
	font-weight: bold;
	white-space: nowrap;
	cursor: pointer;
	text-align: center;
}


.route-option:hover {
	background-color: rgba(255, 255, 255, 0.4);
	color: white;
}

.route-option.active {
	background-color: rgba(255, 255, 255, 0.8);
	color: #333;
	font-weight: bold;
}

/* Pause animation on hover */
.route-wheel:hover .route-wheel-inner {
	animation-play-state: paused;
}

#cycling-info-main {
	flex: 1;
	overflow-y: auto;
	padding: 15px;
	box-sizing: border-box;
	height: auto;
}

/* Poster container */
.poster-container {
	position: relative;
	float: left;
	width: 350px;
	min-width: 350px;
	height: 500px;
	margin: 0px 10px 10px 0px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	border: 1px solid rgb(199, 199, 199);
	background-color: rgb(255, 115, 0);
}

.poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  margin-top: 10px;
}

/* Floating boxes */
.floating-box, .gps-footer, #map-title {
  font-family: 'Special Elite';
  padding: 10px;
}

.floating-box {
  margin: 0px 10px 10px 0px;
  position: relative;
  float: left;
  width: 350px;
  min-width: 350px;
  height: 500px;
  box-sizing: border-box;
  overflow: hidden;
  border: 1px solid rgb(199, 199, 199);
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}

/* Maps */
.themap { 
  flex: 1;
  min-height: 250px;
  width: 100%;
  padding: 10px;
  box-sizing: border-box;
  border-radius: 5px;
}

#map-title {
	position:absolute;
	right:0;
	top:0;
	margin:5px;
	padding: 0px 5px 0px 5px;
	z-index:9999;
	font-size:42px;
	height: 50px;
	line-height: 1.5;
	background-color: rgba(210,210,210);
	border-radius: 5px;
}

/* Cycling info */
[id^="cycling-info-"] {
  flex: 0 0 auto;
}

.cycling-info {
	font-family: 'Special Elite';
	font-size: 12px;
	line-height: 1.4;
	padding: 10px 10px 0 10px;
	margin: 10px 0 0 0;
	background-color: rgba(240, 240, 240, 0.9);
	border: 1px solid #ccc;
	border-radius: 5px;
	min-height: 50px;
}

.segment-title {
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 5px;
	color: #333;
}

.segment-details {
	margin-bottom: 8px;
	padding: 5px;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 3px;
}

/* Timetables */
.timetable-iframe {
	width: 100%;
	height: 80%;
	border: none;
	background-color: rgb(248, 246, 246);
	margin-bottom: 2%;
}

.timetable-title {
	font-family: 'Special Elite';
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin-bottom: 5px;
	color: #333;
}

/* GPX Download List with Vertical Scrolling Animation */
.gpx-download-container {
	height: 100px;
	overflow: hidden;
	position: relative;
	margin: 10px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	background-color: rgba(240, 240, 240, 0.9);
}

.gpx-download-list {
	display: flex;
	flex-direction: column;
	animation: scrollVertical var(--scroll-duration, 15s) linear infinite;
	padding: 10px;
}

.gpx-download-list a {
	display: block;
	padding: 5px 10px;
	margin: 2px 0;
	text-decoration: none;
	color: #333;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 3px;
	transition: background-color 0.3s ease;
	font-size: 12px;
	white-space: nowrap;
}

.gpx-download-list a:hover {
	background-color: rgba(255, 255, 255, 1);
	color: #000;
}

@keyframes scrollVertical {
	0% {
		transform: translateY(0);
	}
	100% {
		transform: translateY(-100%);
	}
}

/* Pause animation on hover */
.gpx-download-container:hover .gpx-download-list {
	animation-play-state: paused;
}

/* Footer */
.gps-footer {
  font-size: 10px;
  position: absolute;
  left: 0px;
  bottom: -15px;
}

/* Leaflet map styles */
.leaflet-marker-pane img {
    margin-left: -13px!important;
    margin-top: -30px!important;
    width: 22px!important;
    height: 30px!important;
}

.numbered-marker {
	border: 2px solid white;
	border-radius: 50%;
	width: 22px;
	height: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	font-size: 12px;
	color: white;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
	position: relative;
}

.numbered-marker .marker-number {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	padding: 0;
	line-height: 1;
}

.numbered-marker.start {
	background: green;
}

.numbered-marker.end {
	background: red;
}

.marker-number {
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 12px;
	color: white;
	margin: 0;
	padding: 0;
	line-height: 1;
}

.default-marker {
	display: none;
}

/* Disable text selection on map controls */
.leaflet-control-container * {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
}

/* Specifically target Leaflet control elements */
.leaflet-control-zoom,
.leaflet-control-layers,
.leaflet-control-scale,
.leaflet-control-attribution,
.leaflet-control-locate {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
}

/* Timetable boxes */
.timetable-box {
	width: 350px;
	min-width: 350px;
	height: 245px;
	min-height: 245px;
	margin: 0px 10px 10px 0px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	border: 1px solid rgb(199, 199, 199);
	background-color: rgb(245, 245, 245);
}

.timetable-box .timetable-title {
	font-size: 20px;
	font-weight: bold;
	color: #333;
	padding: 10px 15px 5px 15px;
	margin: 0;
	flex-shrink: 0;
}

.timetable-box .timetable-iframe {
	flex: 1;
	width: 100%;
	border: none;
	margin: 0;
	padding: 0;
}