.promo-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #e8fff2;
    border: 1px solid #00e676;
    border-radius: 10px;
    padding: 10px 20px;
    color: #4f4f4f;
    font-size: 16px;
    cursor: pointer;
  }

  .promo-button .icon {
    background-color: #00e676;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
  }

  .promo-button .details {
    flex-grow: 1;
    padding-left: 10px;
  }

  .promo-button .details small {
    color: #6c757d;
  }

  .promo-button .arrow {
    color: #6c757d;
    font-size: 16px;
  }

  .promo-checklist {
    display: none;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    margin-top: 10px;
  }

  .promo-checklist label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .original-price {
    text-decoration: line-through !important;
    color: grey;
    margin-right: 10px;
    display: block;
}

.discounted-price {
    font-weight: bold;
    color: green;
    display: block;
}
.keypad-button {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  background-color: #f2f2f2;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.2s;
}

.keypad-button:hover {
  background-color: #e0e0e0;
}

.keypad-icon {
  font-size: 28px;
}

.kasir-input {
    font-size: 24px;     /* Ubah sesuai kebutuhan, misalnya 28px kalau perlu lebih besar */
    font-weight: bold;
}

.bg-orange {
    background-color: orange !important;
    color: white;
}