/* Bird Section Specifics */
.bird-display-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bird-circle-bg {
  position: absolute;
  width: 300px;
  height: 300px;
  background: #ffd166;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.floating-bird {
  z-index: 1;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  animation: slowFloat 4s ease-in-out infinite;
  max-width: 90%;
}

.bird-stat-badge {
  position: absolute;
  top: -20px;
  right: 10px;
  background: #1b4332;
  color: #ffd166;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.bird-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: #f8faf9;
  border-radius: 12px;
  height: 100%;
}

.bird-feature i {
  color: #1b4332;
  margin-top: 4px;
}

.bird-feature h6 {
  color: #1b4332;
  font-weight: 700;
  margin-bottom: 2px;
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@media (max-width: 991px) {
  .bird-circle-bg {
    width: 200px;
    height: 200px;
  }
}

#birdTable thead th {
  border: none;
  font-size: 0.85rem;
  text-transform: uppercase;
}

#birdTable tbody td {
  border-bottom: 1px solid #f1f1f1;
  font-size: 0.95rem;
  padding: 12px 15px;
}

/* Custom Scrollbar for the table */
.table-responsive::-webkit-scrollbar {
  width: 6px;
}
.table-responsive::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.table-responsive::-webkit-scrollbar-thumb {
  background: #1b4332;
  border-radius: 10px;
}

.table-light {
  background-color: rgba(27, 67, 50, 0.05) !important;
}

#birdSearch:focus {
  border-color: #1b4332;
  box-shadow: none;
}
