.map-wrapper1 {
    display: flex;
    width: 100%;
    height: 320px;
}

/* Sidebar container */
.sidebar1 {
    width: 260px;
    background: #f8f8f8;
    border-right: 1px solid #ddd;
    padding: 15px;
    overflow-y: auto;
    font-family: Arial, sans-serif;
}

/* Sidebar title */
.sidebar1 h3 {
    margin-bottom: 12px;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

/* Destination list */
#destinationList {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each destination item */
#destinationList li {
    padding: 10px 12px;
    margin-bottom: 6px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Hover effect */
#destinationList li:hover {
    background: #e8f5e9;
    border-color: #81c784;
    transform: translateX(4px);
}

/* Active / clicked highlight */
#destinationList li.active {
    background: #c8e6c9;
    border-color: #4caf50;
    font-weight: bold;
}


#vidarbhaMap {
    width: 40%;
    height: 300px;
}


.blink-marker {
    animation: blink 1s ease-in-out 3;
}

@keyframes blink {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}
/* Search bar */ 
.search-input { 
	width: 100%; 
	padding: 10px; 
	margin-bottom: 12px; 
	border: 1px solid #ccc; 
	border-radius: 6px; 
	font-size: 15px; 
	outline: none; 
} 
.search-input:focus { 
	border-color: #4caf50; 
	box-shadow: 0 0 4px rgba(76, 175, 80, 0.4); 
}
.sidebar-right {
	display: none;
	width: 400px; /* fixed width */ 
	min-width: 400px; /* prevents shrinking */ 
	max-width: 400px; /* prevents expanding */ 
	overflow-y: auto; /* scroll only inside panel */ 
	overflow-x: hidden;
	background: #ffffff; 
	border-left: 1px solid #e0e0e0; 
	padding: 20px; overflow-y: auto; /* subtle shadow */ 
	box-shadow: -2px 0 8px rgba(0, 0, 0, 0.05); /* smooth slide-in effect */ 
	transition: all 0.3s ease; 
}
/* Title */ 
#dName { 
	font-size: 22px; 
	font-weight: 700; 
	margin-bottom: 10px; 
	color: #2c3e50; 
}
 /* Image styling */ 
 #dImage { 
 	width: 100%; 
	border-radius: 10px; 
	margin-bottom: 15px; 
	object-fit: cover; 
	max-height: 200px; 
	box-shadow: 0 2px 6px rgba(0,0,0,0.1); 
}
  /* Description */ 
 #dDescription { 
 	font-size: 15px; 
 	line-height: 1.5; 
 	color: #555; 
 	margin-bottom: 15px; 
 }
 .sidebar-right p{
 	margin-bottom: 10px;
 }
 /* Labels */ 
.sidebar-right p strong { 
	color: #333; 
} 
/* Value text */ 
.sidebar-right span { 
	color: #555; 
} 
/* Optional: highlight panel when updated */ 
.sidebar-right.updated { 
	display: block;
	animation: highlight 0.6s ease; 
} 
@keyframes highlight { 
	from { background-color: #fff7d6; } 
	to { background-color: #ffffff; } 
}
