/* Reset + Base */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fcfcfc;
}

/* Top & Bottom Tab Navigation */
#tabs-top, #tabs-bottom {
  background-color: #007B9E;
  display: flex;
  justify-content: space-around;
  padding: 12px 0;
}

#tabs-top a, #tabs-bottom a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

#tabs-top a:hover, #tabs-bottom a:hover {
  background-color: #00B8D4;
}

/* Main Content Container */
#main {
  padding: 20px;
  text-align: center;
}

/* Animal Info Boxes */
.info-box {
  border: 2px solid #ccc;
  border-radius: 8px;
  background-color: #fff;
  padding: 12px;
  margin: 10px;
  width: 200px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease;
}

.info-box img {
  width: 150px;
  transition: transform 0.3s ease;
  cursor: pointer;
  border-radius: 6px;
}

.info-box.zoom img {
  transform: scale(1.3);
}

.info-box h3 {
  margin: 10px 0 5px;
  font-size: 18px;
  color: #222;
}

.subtitle {
  font-weight: bold;
  font-size: 14px;
  color: #555;
}

.fact {
  font-style: italic;
  font-size: 13px;
  color: #777;
  margin-top: 8px;
}
