body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #212529;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.event_detail_container {
  margin-top: 80px;
}

.header,
.footer {
  background-color: black;
  color: white;
  padding: 1rem;
  text-align: center;
}

.content {
  margin: 2rem 0;
}

.content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.card {
  background-color: black;
  color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.card h2 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.card p {
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: black;
  color: white;
  border: none;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  background-color: #0056b3;
}

.link {
  color: #007bff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.info-table th,
.info-table td {
  border: 1px solid #ddd;
  padding: 0.5rem;
  text-align: left;
}

.info-table th {
  background-color: black;
  font-style: bold;
}

.image-container {
  text-align: center;
  margin: 2rem 0;
}
.image-container img {
  max-width: 50rem;
  height: auto;
  min-height: 30rem;
  display: block;
  margin: 0 auto;
}
img.observation-img {
  width:20rem;
}

/* Style for the tab container */
  .tab-container {
      display: flex;
      border-bottom: 1px solid orange;
  }
  /* Style for individual tabs */
.tab {
  padding: 15px 20px;
  cursor: pointer;
  border-radius: 3px 3px 0px 0px;
  border-bottom: none;
  margin-right: 5px;
  background: #222;
  color: white;
  box-shadow: 0 0.5rem 0.8rem #00000080;
}
.tab.active {
  background: orange;
  border-bottom: 3px solid orange;
}
  /* Style for tab content */
  .tab-content {
background: #000;
  box-shadow: 0 2rem 2rem #00000080;
      display: none;
      padding: 20px;
      border-top: 3px solid orange;
min-height: 200px;
width: 100%;
border-radius: 3px;
overflow: hidden;
  }
  .tab-content.active {
      display: block;
  }
@media (max-width: 500px) {
.image-container img {
  max-width: 100vw;
}
}


button.like-btn {
  background: transparent !important;
  border: none;
}

button.like-btn i {
  color: #007bff;
}
button.like-btn span {
  color: #007bff;
}

a.observe-btn {
  background: green;
  font-weight: bold;
  font-size: 2rem;
  margin: 21px 0;
  display: flex;
  width: fit-content;
  padding: 8px;
  color: white;
  border-radius: 5px;
}