body.reports-page .filters {
    width: 100%;
    padding: 80px 8% 20px;
    text-align: center;
    margin-top: 0;
}

.filters h2 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 60px;
    color: #fff;
}

.search-container {
    margin-top: 20px;
}

.search-container input {
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #ffcc00;
    width: 250px;
    font-size: 16px;
    background: #252525;
    color: #fff;
}

.search-container input:focus {
    outline: 2px solid #e6b800;
    border-color: #e6b800;
}

.search-container input::placeholder {
    color: #999;
}

.strain-list {
    width: 100%;
    padding: 20px 8% 100px;
    text-align: center;
}

.strain-list h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

.strains-section {
  width: 100%;
  padding: 6rem 8%;
  background: #101010;
  text-align: center;
}

.strains-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  border-bottom: 2px solid #ffcc00;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.search-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.search-filter input {
  padding: 0.75rem 1rem;
  border-radius: 6px;
  border: none;
  width: 280px;
  font-size: 1rem;
  background: #252525;
  color: #fff;
}

.search-filter button {
  padding: 0.75rem 1.5rem;
  background: #ffcc00;
  color: #121212;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.search-filter button:hover {
  background: #e6b800;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.filter-buttons button {
  padding: 0.6rem 1.25rem;
  background: #ffcc00;
  color: #121212;
  border: none;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
}

.filter-buttons button:hover {
  background: #e6b800;
}

.strain-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  padding: 1rem 0;
place-items: center;
}

.strain {
  background: #181818;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.strain:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.strain-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.strain:hover .strain-image {
  transform: scale(1.05);
}

.strain h3 {
  font-size: 1.25rem;
  margin: 1rem 0 0.5rem;
  color: #ffcc00;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.strain p {
  font-size: 1rem;
  color: #ccc;
  padding: 0 1rem 1.25rem;
  line-height: 1.6;
}

.strain-row .strain {
  width: 100%;
  max-width: 300px; 
}
