/* Game dropdown styles */
.game-dropdown {
  position: absolute;
  z-index: 9999;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  width: 100%;
}

.game-dropdown-item {
  display: flex;
  padding: 0.5rem;
  border-bottom: 1px solid #f3f4f6;
  cursor: pointer;
}

.game-dropdown-item:hover {
  background-color: #f3f4f6;
}

.game-dropdown-item img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 0.75rem;
  border-radius: 0.25rem;
}

.game-dropdown-item .game-info {
  display: flex;
  flex-direction: column;
}

.game-dropdown-item .game-name {
  font-weight: 500;
}

.game-dropdown-item .game-year {
  font-size: 0.75rem;
  color: #6b7280;
}

.game-search-container {
  position: relative;
  width: 240px;
}

.selected-game-badge {
  display: inline-flex;
  align-items: center;
  background: #e0e7ff;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-right: 0.5rem;
}

.selected-game-badge img {
  width: 20px;
  height: 20px;
  margin-right: 0.5rem;
  border-radius: 2px;
}

.selected-game-badge .remove-game {
  margin-left: 0.5rem;
  cursor: pointer;
  color: #4f46e5;
}

.filters-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

@media (max-width: 640px) {
  .game-search-container {
    width: 100%;
  }
}

/* Pagination styles */
.pagination {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.pagination li {
  margin: 0 0.25rem;
}

.pagination li a {
  display: block;
  padding: 0.5rem 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  color: #4f46e5;
  cursor: pointer;
}

.pagination li.active a {
  background-color: #4f46e5;
  color: white;
  border-color: #4f46e5;
}

.pagination li.disabled a {
  color: #9ca3af;
  cursor: not-allowed;
}

.pagination li a:hover:not(.active):not(.disabled) {
  background-color: #f3f4f6;
}