#pokemon-display {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.pokemon-card {
  border: 8px solid rgb(49, 102, 177) !important;
  border-radius: 12px !important;
  max-width: 280px !important;
  transition: transform 0.3s, box-shadow 0.3s;
}

.pokemon-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 16px rgba(0, 0, 0, 0.3);
}

.row > * {
  padding: 0 !important;
}

.card-body {
  padding: 5px 16px !important;
}

.blur {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

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

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.dropdown button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 220px !important;
  color: rgb(41,113,184) !important;
  
}

.dropdown-menu {
  border: 4px solid rgb(41,113,184) !important;
  border-radius: 10px !important;
}
