body {
  font-family: 'Courier Prime', monospace;
  background-color: #212529;
}

body,
html {
  margin: 0;
  padding: 0;
  background-color: #242424;
  color: white;
  font-family: 'Courier Prime', monospace;
  font-size: 20px;
}

.main_frame {
  padding: 0 15px;
  max-width: 500px;
  margin: 0 auto;
}

.frame1 {
  width: 100%;
  margin-top: 20px;
}

.logo {
  text-align: center;
  width: 100%;
  margin-bottom: 25px;
}

.logo img {
  width: 200px;
}

.frame2 {
  width: 100%;
  background-color: black;
}

.icon {
  width: fit-content;
  height: 62px;
}

.icon img {
  width: 60px;
}

.frame2_1 {
  display: inline-flex;
  width: 100%;
  border-bottom: solid;
  border-color: white;
}

.title {
  color: white;
  text-align: right;
  width: 100%;
  font-size: 24px;
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  padding: 0px 15px 10px 0px;
}

.input_name {
  color: white;
  padding-left: 20px;
}

input {
  background-color: black;
  border: 2px solid #fff;
  border-radius: 25px !important;
  padding: 10px 20px 8px 20px;
  outline: none;
  font-family: 'Courier Prime', monospace;
  color: #000;
  margin-top: 5px;
  margin-bottom: 20px;
  width: 100%;
  caret-color: white;
  font-size: 20px;
}

input:focus {
  background-color: white;
}

input:not(:placeholder-shown) {
  background-color: white;
  caret-color: black;
}

input:placeholder-shown {
  background-color: black;
}

.username_input,
.amount_input {
  display: flex;
  align-items: center;
  padding-left: 10px;
  position: relative;
}

.username_input input,
.amount_input input {
  flex-grow: 1;
  margin-right: 10px;
}

.amount_input input {
  max-width: 185px;
  text-align: right;
}

.amount_input button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-top: -13px;
  margin-left: 3px;
}

.amount_input button img {
  width: 40px;
}

.frame2_2 {
  padding: 20px 40px;
}

.amount-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 15px;
}

.amount-options img {
  cursor: pointer;
  width: 90px;
  margin: 0 2px;
  transition: transform 0.3s ease;
}

.amount-options img.big {
  width: 120px;
}

.amount-options img:hover {
  transform: scale(1.1);
}

.submit-button {
  width: 100%;
  padding: 15px;
  text-align: center;
  background-color: white;
  color: #111111;
  border: none;
  border-radius: 45px;
  font-size: 24px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Courier Prime', monospace;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.submit-button:hover {
  background-color: #f2f2f2;
}

.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

#message {
  min-height: 24px;
  margin: 12px 0 0;
  text-align: center;
  color: #ff7f7f;
  font-size: 16px;
}

.help-text {
  text-align: center;
  color: white;
  padding: 20px 0;
  border-top: solid 2px white;
}

.help-text a {
  color: white;
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .logo img {
    width: 150px;
  }

  .amount-options img,
  .amount-options img.big {
    width: 80px;
    margin: 0 1px;
  }
}

@media screen and (max-width: 480px) {
  .main_frame {
    padding: 0 10px;
  }

  .logo {
    margin-bottom: 10px;
  }

  .logo img {
    width: 140px;
  }

  .frame2_2 {
    padding: 8px;
  }

  .amount-options img {
    width: 90px;
    margin: 0;
    margin-bottom: 2px;
  }

  .amount-options img.big {
    width: 110px;
  }

  .submit-button {
    margin-bottom: 10px;
  }
}

.autocomplete-suggestions {
  display: none;
  border: 1px solid #12121f;
  background: #07070f;
  padding: 10px;
  position: absolute;
  z-index: 2;
  width: calc(100% - 40px);
  left: 20px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  color: #fff;
  background-color: #12121f;
  height: auto;
  max-height: 245px;
  overflow-y: auto;
}

.autocomplete-suggestion {
  padding: 5px;
  cursor: pointer;
}

.autocomplete-suggestion:hover {
  background-color: #07070f;
}

#payment-form {
  position: relative;
}

#search-loader {
  position: absolute;
  right: 30px;
  top: 16px;
  color: #28a745;
  font-size: 22px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 20px !important;
  background-color: #f5f5f5;
}

::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  border-radius: 20px !important;
}

::-webkit-scrollbar-thumb {
  border-radius: 20px !important;
  -webkit-box-shadow: inset 0 0 6px #555;
  background-color: rgba(0, 0, 0, 0.3);
}
