/* developer css clases*/

#species_detail p{
  text-align: justify;
}
/* main page species galary css */
.species {
 
  background-size: cover !important;
  position: relative !important;
  height: 300px; /* Adjust as needed */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease-in-out, filter 0.3s ease-in-out;
}

.species .content {
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
  color: white !important;
  padding: 10px;
  transition: background 0.3s ease-in-out;
  
}

/* Hover Effects */
.species:hover {
  transform: scale(1.05); /* Slight zoom */
  filter: brightness(0.8); /* Darken image slightly */
  cursor: pointer;
}

.species:hover .content {
  background: rgba(0, 0, 0, 0.8); /* Make text background darker */
}


/* detail page table css for species */
/* Table Styling */
#species_detail table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  text-align: left;
  /* border-radius: 8px; */
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Table Header */
#species_detail thead {
  background-color: maroon;
  color: white;
}

#species_detail th, td {
  padding-left: 13px !important;
  border: 1px solid #ccc7c7;
  padding: 0px
}

/* Alternate Row Colors */
#species_detail tbody tr:nth-child(odd) {
  background-color: #f8e6e6;
}

#species_detail tbody tr:nth-child(even) {
  background-color: #ffffff;
}

/* Links inside Table */
#species_detail td a {
  color: maroon;
  text-decoration: none;
  font-weight: bold;
}

#species_detail td a:hover {
  text-decoration: underline;
}

/* Emphasized Text */
em {
  color: #7a0c0c;
  font-weight: bold;
}


/* SAMPLE TAB CSS */
.tabs-container {
  margin: 50px auto;
  /* max-width: 1000px; */
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.nav-tabs {
  border-bottom: none;
  display: flex;
  /* justify-content: space-around; */
}

.nav-tabs .nav-link {
  border: none;
  color: #555;
  font-weight: bold;
  /* padding: 12px 20px; */
  /* border-radius: 50px; */
  transition: all 0.3s ease-in-out;
  background: #e0e0e0;
  margin: 2px;
}

.nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #c00, #900);
  color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-tabs .nav-link:hover {
  background: #d1d1d1;
  color: #000;
}

.tab-content {
  background: #fff;
  /* padding: 20px; */
  /* border: 1px solid #ddd; */
  border-top: none;
}

.test-title {
  font-size: 22px;
  font-weight: bold;
  color: #333;
}

.test-info {
  font-size: 18px;
  color: #666;
}

.table th {
  background: #e9ecef;
  text-align: left;
  font-weight: bold;
  width: 23%;
}

.table td {
  text-align: justify;
}

body {
  background-color: #f8f9fa;
  font-family: Arial, sans-serif;
}

.specimen-container {
  background-color: #E6E8EA;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  /* max-width: 1100px; */
  /* margin: 50px auto; */
}

.preferred {
  font-size: 18px;
  font-weight: bold;
  color: #c00;
}

.preferred i {
  font-style: italic;
  color: #900;
}

    section .section{
            padding: 0px !important;
        }