.main-softreset {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  padding: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.soft-box, .nursery-box {
  background-color: rgba(30, 30, 30, 0.85);
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  padding: 20px;
  backdrop-filter: blur(5px);
}
.soft-box {
  flex: 1;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.3s ease;
}
.soft-box:hover {
  transform: translateY(-5px);
}
.nursery-box {
  background-image: url("/img/mountain.png");
  background-size: cover;
  background-position: center;
  flex: 1;
  max-width: 400px;
  height: 400px;
  position: relative;
  overflow: hidden;
  border: 3px dashed #000;
}
.nursery-box img {
  position: absolute;
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.select-wrapper select,
.pokemon-info select {
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: none;
  background: #2e2e2e;
  color: #f5f5f5;
  font-size: 1rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
}
.select-wrapper select:focus,
.pokemon-info select:focus {
  background-color: #333;
  outline: none;
  box-shadow: 0 0 0 2px rgba(76,175,80,0.5);
}
.counter-bar {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  user-select: none;
  background: #2e2e2e;
  color: #f5f5f5;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.5);
}

.space-button,
.reset-button,
.reset-modal-buttons button {
  width: 100%;
  padding: 15px;
  background: #2e2e2e;
  color: #f5f5f5;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s;
}
.space-button:hover,
.reset-button:hover,
.reset-modal-buttons button:hover {
  transform: scale(1.03);
  background: #3a3a3a;
}
.reset-button {
  width: 60px;
  height: 60px;
  align-self: flex-end;
}

.reset-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}
.reset-modal-overlay.visible {
  display: flex;
}
.reset-modal-content {
  background: #1e1e1e;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  color: #f5f5f5;
  max-width: 300px;
  box-shadow: 0 0 20px rgba(76,175,80,0.5);
}
.reset-modal-buttons {
  margin-top: 15px;
  display: flex;
  gap: 10px;
}