.trash-body {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.trash-tile {
  width: 140px;
  height: 140px;
  background: rgba(255,255,255,0.8);
  border: 2px solid #ccc;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  color: #333;
  box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.trash-tile:hover {
  transform: scale(1.05);
  box-shadow: 4px 4px 12px rgba(0,0,0,0.2);
}

.trash-logo {
  width: 78px;
  height: 78px;
  object-fit: contain;
}

.trash-tile span {
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  padding: 0 4px;
}