.instructions {
	background-color: #fff;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 20px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	font-weight: bold;
	color: #2c3e50;
	border-right: 4px solid #3498db;
}

#map {
	height: 75vh;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	z-index: 1;
}

.route-info {
	background-color: #fff;
	border-radius: 8px;
	padding: 15px;
	margin-top: 20px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.route-summary {
	display: flex;
	justify-content: space-around;
	text-align: center;
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #eee;
}

.route-item {
	flex: 1;
}

.route-item h4 {
	color: #7f8c8d;
	margin-bottom: 5px;
}

.route-item p {
	font-size: 1.2rem;
	font-weight: bold;
	color: #2c3e50;
}

.instructions-list {
	list-style-type: none;
	max-height: 200px;
	overflow-y: auto;
	padding: 10px;
	background-color: #f9f9f9;
	border-radius: 6px;
	direction: ltr;
}

.instructions-list li {
	padding: 8px 10px;
	border-bottom: 1px solid #eee;
	display: flex;
	align-items: center;
}

.instructions-list li:last-child {
	border-bottom: none;
}

.instruction-icon {
	margin-left: 10px;
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #3498db;
	color: white;
	border-radius: 50%;
	font-size: 12px;
}

.reset-btn {
	font-family: vazir;
	display: block;
	margin: 20px auto;
	padding: 10px 20px;
	background-color: #e74c3c;
	color: white;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 1rem;
	transition: background-color 0.3s;
}

.reset-btn:hover {
	background-color: #c0392b;
}

@media (max-width: 768px) {
	#map {
		height: 90vh;
	}
	
	.route-summary {
		flex-direction: column;
		gap: 15px;
	}
}
