 .cash-counter {
      background: #fff;
      border-radius: 12px;
      padding: 30px;
      max-width: 600px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      width: 100%;
    }
    .cash-counter h2 {
      font-size: 24px;
      margin-bottom: 5px;
      text-align: center;
			 font-family: 'Segoe UI', sans-serif;
    }
    .cash-counter p {
      text-align: center;
      margin-bottom: 20px;
      color: #666;
    }
    .currency-select {
      position: relative;
      margin-bottom: 20px;
    }
    .currency-select select {
  width: 100%;
  padding: 14px 16px; /* बढ़ाया गया padding */
  font-size: 16px;
  line-height: 1.5; /* ensure vertical alignment */
  border-radius: 8px;
  border: 1px solid #ccc;
  appearance: none;
  background-color: #fff;
  color: #333;
  box-sizing: border-box;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 6"><path d="M0 0l5 6 5-6z" fill="%23666"/></svg>');
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  height: auto; /* Ensure height is auto, not fixed */
}

    .denomination {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 15px;
    }
    .denomination label {
      font-size: 16px;
      flex: 1;
    }
    .denomination input {
      width: 80px;
      padding: 6px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      text-align: right;
    }
    .total {
      margin-top: 30px;
      background-color: #4f46e5;
      color: white;
      padding: 12px;
      font-weight: bold;
      font-size: 18px;
      border-radius: 8px;
      text-align: center;
    }