
.selector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.selector-card {
  background: #111;
  border: 2px solid gold;
  border-radius: 1.5rem;
  padding: 1.2rem;
  box-shadow: 0 0 18px rgba(255, 215, 0, 0.25);
  color: #ffd700;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.selector-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selector-title {
  font-weight: bold;
  font-size: 1.1rem;
}

.selector-badges {
  font-size: 1.2rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.favorite-toggle {
  cursor: pointer;
}

.selector-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}

.selector-btn {
  background-color: #ffd700;
  color: black;
  font-weight: bold;
  padding: 0.4rem 0.9rem;
  border: none;
  border-radius: 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.selector-btn:hover {
  background-color: black;
  color: #ffd700;
  box-shadow: 0 0 10px rgba(255,215,0,0.5);
}
