/* Checklist Image Styling */
.image-stack {
  position: relative;
  padding-right: 20px;
  padding-bottom: 20px;
}

.checklist-img {
  border-radius: 20px;
  box-shadow: 25px 25px 0px rgba(27, 67, 50, 0.05);
  transition: 0.4s ease;
}

.floating-data-card {
  position: absolute;
  bottom: -15px;
  right: 0;
  background: #1b4332;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #ffd166;
}

/* Feature Point Styling */
.check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  transition: 0.3s;
}

.check-item i {
  color: #1b4332;
  background: rgba(255, 209, 102, 0.2);
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
}

.check-item:hover {
  border-color: #ffd166;
  background: #fffef5;
}

@media (max-width: 991px) {
  .image-stack {
    margin-bottom: 40px;
  }
  .floating-data-card {
    right: 20px;
  }
}

/* Category Icons */
.category-icon {
  width: 60px;
  height: 60px;
  background: #1b4332;
  color: #ffd166;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

/* Table Styling */
.table thead th {
  border: none;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.table tbody td {
  padding-top: 20px;
  padding-bottom: 20px;
  color: #333;
}

/* Animal Mini Cards */
.animal-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #eee;
  text-align: center;
  transition: 0.3s;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.animal-card:hover {
  border-color: #ffd166;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.animal-card h6 {
  color: #1b4332;
  font-weight: 700;
  margin-bottom: 5px;
}

.animal-card small {
  display: block;
  font-style: italic;
  color: #888;
  margin-bottom: 15px;
}

.local-tag {
  font-size: 0.75rem;
  background: #f8faf9;
  color: #1b4332;
  padding: 4px 10px;
  border-radius: 5px;
  display: inline-block;
  font-weight: 600;
  border: 1px solid rgba(27, 67, 50, 0.1);
}

/* Table Specific Tweak */
.table td {
  padding-top: 18px;
  padding-bottom: 18px;
  font-size: 0.95rem;
  color: #444;
}

.table thead th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  border: none;
}

/* Local name emphasis */
.fw-bold {
  color: #1b4332;
}

.fw-600 {
  font-weight: 600;
}

/* Hover effect for rows */
.table-hover tbody tr:hover {
  background-color: rgba(255, 209, 102, 0.05);
}

/* Species Card Design */
.species-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #eee;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.species-emoji {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.species-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1b4332;
  margin-bottom: 10px;
}

/* Hover Effects */
.species-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 30px rgba(27, 67, 50, 0.1);
  border-color: #ffd166;
}

.species-card:hover .species-emoji {
  transform: scale(1.2);
}

/* Highlight specific card (e.g., Tiger) */
.highlight-species {
  border-bottom: 4px solid #ffd166;
}

@media (max-width: 576px) {
  .species-card {
    padding: 20px 10px;
  }
  .species-emoji {
    font-size: 2.2rem;
  }
  .species-card h4 {
    font-size: 0.95rem;
  }
}
