#map {
  height: 400px;
  width: 100%;
  margin-bottom: 20px;
}
.banner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f8f9fa;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.banner img {
  max-height: 60px;
}
.popup-image {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 5px;
}
.description-cell {
  max-height: 100px;
  overflow-y: auto;
}
.table-image {
  max-width: 60px;
  max-height: 60px;
  object-fit: cover;
  border-radius: 5px;
}
.play-audio-btn,
.stop-audio-btn,
.close-modal-btn {
  font-size: 14px;
  margin-top: 5px;
  display: inline-flex;
  align-items: center;
}
.play-audio-btn span {
  margin-right: 5px;
}

.tableFixHead {
  overflow: auto;
  height: 100px;
}
.tableFixHead thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}

.custom-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

.custom-modal-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  text-align: center;
}