body {
    margin: 0;
    padding: 0;
    background: #ffffff;
    font-family: Arial, sans-serif;
}

/* App layout */
#app {
    width: 950px; /* 320 sidebar + 610 map + 20 gap */
    height: 400px;
    display: flex;
    gap: 20px;
    align-items: stretch;
}

#sidebar {
    width: 320px;
    height: 400px;
    overflow-y: auto;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    background: #f3f4f6;
}

.sidebar-item {
    padding: 12px 14px;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.sidebar-item:hover {
    background: #f9fafb;
}

.sidebar-item.is-active {
    background: #2f3540;
    color: #ffffff;
}

.sidebar-title {
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 6px 0;
}

.sidebar-sub {
    font-size: 12px;
    line-height: 1.35;
    margin: 0 0 6px 0;
    color: rgba(0, 0, 0, 0.75);
}

.sidebar-item.is-active .sidebar-sub {
    color: rgba(255, 255, 255, 0.85);
}

.sidebar-address {
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
    color: rgba(0, 0, 0, 0.75);
}

.sidebar-address .fa-location-dot {
    margin-right: 6px;
    color: rgba(0, 0, 0, 0.65);
}

.sidebar-item.is-active .sidebar-address {
    color: rgba(255, 255, 255, 0.85);
}

.sidebar-item.is-active .sidebar-address .fa-location-dot {
    color: rgba(255, 255, 255, 0.85);
}

.toggle-btn {
	background: white;
	color: #6f737a;
	position: absolute;
	width: 42px;
	height: 42px;
	border-radius: 5px;
	left: 885px;
	align-self: center;
	z-index: 2;
	font-size: 26px;
	cursor: pointer;
	box-shadow: 0px 0px 7px;
}

.toggle-btn.on {
	background: #2f3540;
	color: white;
}

.toggle-btn .fa-solid {
	margin: 8px;
}

.toggle-btn#toggle-map {
	margin-bottom: 100px;
}

#map {
    width: 850px;
    height: 400px;
}

.station-card {
    width: 240px;
    background: #ffffff;
    color: #111;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    font-family: Arial, sans-serif;
    cursor: pointer;
}

.station-card__image {
    display: block;
    width: 100%;
    height: 80px;
    object-fit: cover;
    background: #f2f2f2;
}

.station-card__content {
    padding: 8px 10px 10px;
}

.station-card__title {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0 0 6px 0;
}

.station-card__row {
    font-size: 12px;
    line-height: 1.35;
    margin: 0 0 6px 0;
}

.station-card__label {
    font-weight: 700;
}

.station-card__address {
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
    color: rgba(0, 0, 0, 0.78);
}

.lane-link,
.lane-link:visited,
.lane-link:hover,
.lane-link:active {
    color: #F6A64D;
    text-decoration: underline;
    cursor: pointer;
}

.no-select {
		-webkit-touch-callout: none; /* iOS Safari */
  	-webkit-user-select: none;   /* Safari, Chrome */
  	-khtml-user-select: none;    /* Konqueror HTML */
  	-moz-user-select: none;      /* Firefox */
  	-ms-user-select: none;       /* Internet Explorer/Edge */
  	user-select: none;           /* Standard property */
}

.hide {
	display: none;
}