.lp-wrapper {
  width: 100%;
  display: block;
  margin: 8px 0;
}

.placements-label {
  width: 50%;
}

.rank-text {
  color: #fff9;
}

.lp-row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.lp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(195, 91, 250, 0.1);
  color: #c35bfa;
  border-radius: 8px;
  cursor: pointer;
  width: 46px;
  height: 46px;
  transition: background-color 0.2s;
}

.lp-button:hover {
  background-color: rgba(195, 91, 250, 0.2);
}

.lp-input-container {
  flex-grow: 1;
  position: relative;
}

.lp-label {
  display: block;
  position: relative;
  width: 100%;
}

.lp-input-wrapper {
  position: relative;
  width: 100%;
}

.lp-input-prefix {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  pointer-events: none;
}

.lp-input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background-color: #3d3241;
  color: #fff;
  font-size: 1rem;
  line-height: 1.5;
  transition: background-color 0.2s;
}

.lp-input:hover {
  background-color: #463a4a;
}

.lp-input:focus {
  outline: none;
  background-color: #4a3d4e;
}

/* Remove number input arrows */
.lp-input::-webkit-inner-spin-button,
.lp-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.lp-input {
  -moz-appearance: textfield;
}

/* Placeholder styling */
.lp-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

/* Mobile optimization */
@media (max-width: 768px) {
  .lp-input {
    font-size: 16px; /* Prevent zoom on mobile */
  }
}
