* {
  margin: 0;
  padding: 0;
}

body {
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 16px;
  color: #444;
}

.sidebar {
  float: left;
  width: 240px;
  height: 100vh;
  background-color: #f8f9fa;
  border-right: 1px solid #e0e0e0;
  padding: 20px;
}
.sidebar h2 {
  font-size: 24px;
  color: #222;
  margin-bottom: 16px;
}

.nav li {
  list-style: none;
  margin-bottom: 12px;
}
.nav a {
  text-decoration: none;
  color: #555;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 0;
}
.nav a:hover,
.nav a.active {
  color: #e74c3c;
}

/* DROPDOWN menu style */
.dropdown-menu {
  display: none;   
  margin-left: 10px;
  margin-top: 10px; 
}
.dropdown:hover .dropdown-menu {
  display: block; 
}


.main {
  margin-left: 240px;
  padding: 20px;
}
.main h1 {
  font-size: 28px;
  margin-bottom: 16px;
}

.map-container {
  position: relative;
  width: 1100px;
  margin: 20px auto;
}
.map-container img {
  width: 100%;
  display: block;
  height: auto;
}
.map-point {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  transform: translate(-50%, -50%);
}

/* ECOMAPS maps and Button ONLY*/
#mapImage {
  display: block;
  width: 600px;      
  border: 1px solid #ccc;
  margin: 0 auto;
}
button {
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
  background-color: #e74c3c;
  color: #fff;
  border: none;
  border-radius: 4px;
  margin-top: 10px;
}
button:hover {
  background-color: #c0392b;
}

.map-desc-container {
  overflow: auto;
  margin-top: 20px;
}
.map-block {
  float: left;
  width: 60%;
}
.description {
  float: right;
  width: 35%;
}

}
