/* DokuWiki Amount Plugin Styles */
.amount-multiplier-wrapper {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 1em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.amount-multiplier-wrapper label {
  font-weight: normal;
  margin: 0;
}

.amount-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #ccc;
  background-color: #f5f5f5;
  color: #333;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
  transition: background-color 0.2s, border-color 0.2s;
  padding: 0;
  line-height: 1;
}

.amount-button:hover {
  background-color: #e8e8e8;
  border-color: #999;
}

.amount-button:active {
  background-color: #d8d8d8;
  transform: scale(0.95);
}

#amount-multiplier {
  width: 60px;
  height: 36px;
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
  text-align: center;
  font-size: 16px;
}

.amount-value {
  font-weight: bold;
  color: #000;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .amount-button {
    width: 44px;
    height: 44px;
    font-size: 24px;
  }
  
  #amount-multiplier {
    width: 70px;
    height: 44px;
    font-size: 18px;
  }
}
