body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #f3fdf5;
  color: #202020;
}
header {
  background-color: #1a7f3b;
  color: white;
  padding: 20px;
  text-align: center;
}
header h1 {
  margin: 0;
  font-size: 24px;
}
.map-section {
  height: 300px;
  border-bottom: 5px solid #1a7f3b;
  position: relative;
  z-index: 1;
  margin-bottom: 40px; /* 👈 This gives space for buttons */
}

#heatmap {
  width: 100%;
  height: 100%;
}
.buttons {
  text-align: center;
  margin: 30px 0;
  position: relative;
  z-index: 10;
}
.buttons a {
  display: inline-block;
  background: #1a7f3b;
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
}
.buttons a:hover {
  background: #145f2b;
}
.search-bar {
  text-align: center;
  margin-bottom: 20px;
}
.search-bar input {
  padding: 10px;
  width: 80%;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.report-feed {
  padding: 30px;
}
.report-card {
  background: white;
  margin-bottom: 20px;
  padding: 20px;
  border-left: 5px solid #1a7f3b;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  position: relative;
  display: flex;
  gap: 20px;
}
.report-thumb {
  flex-shrink: 0;
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.report-content {
  flex: 1;
}
.report-card h3 {
  margin-top: 0;
  color: #1a7f3b;
}
.report-card small {
  color: gray;
  display: block;
  margin-top: 8px;
}
.vote-btn {
  background: #1a7f3b;
  color: white;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
.vote-btn:hover {
  background: #145f2b;
}
.read-more {
  display: inline-block;
  background: #1a7f3b;
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  margin-top: 10px;
}
.read-more:hover {
  background: #145f2b;
}
.comment-form textarea {
  width: 100%;
  height: 100px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}
.comment-form button {
  background: #1a7f3b;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  cursor: pointer;
}
.comment-form button:hover {
  background: #145f2b;
}
.back-button {
  display: inline-block;
  background: #1a7f3b;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}
.back-button:hover {
  background: #145f2b;
}
.share-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin-right: 10px;
}
.share-icon img {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logout {
  background: white;
  color: #0a4b78;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

