/* Styling for evicted houseguests - using grayscale only, no sepia */
.evicted {
  filter: grayscale(100%) !important;
  opacity: 0.8 !important;
  background-color: white !important;
}

/* Apply to both cards and containers */
.houseguest-card.evicted,
.houseguest-img-container.evicted,
.houseguest-section .evicted {
  filter: grayscale(100%) !important;
  opacity: 0.8 !important;
}

/* Override any potential sepia filters */
.evicted-img,
.evicted * {
  filter: grayscale(100%) !important;
  -webkit-filter: grayscale(100%) !important;
  -moz-filter: grayscale(100%) !important;
}

/* Add white background specifically to images to eliminate sepia illusion */
.evicted img,
.evicted-container img,
.houseguest-card.evicted img,
.houseguest-img-container.evicted img {
  background-color: white !important;
  box-shadow: 0 0 0 5px white !important; /* Add white border around image */
}
