body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
}

.container {
  display: flex;
}

.left-section,
.right-section {
  flex: 1;
  padding: 20px;
}

h2 {
  margin-top: 0;
}

label {
  display: block;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 5px;
  margin-bottom: 10px;
}

textarea {
  height: 50px; /* 调整 textarea 的高度 */
}

button {
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border: none;
  cursor: pointer;
}

.utxo-item {
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 10px;
}

.utxo-group {
  border: 1px solid #ccc;
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
}

.mintHexData-input-container {
  align-items: center;
  margin-bottom: 10px;
}

.mintHexData-input-container input {
  width: 205px;
  margin-right: 10px;
}

.mintHexData-input-container span {
  display: flex;
  align-items: center;
}

.mintHexData-wrapper {
  display: flex;
  align-items: center;
}

.mintname-wrapper {
  display: flex;
  align-items: center;
  margin-left: 10px;
}

.mintname-wrapper span {
  margin-right: 5px;
}

.fee-input-container {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.fee-input-container label {
  margin-right: 5px;
}

.fee-input-container input {
  width: 150px;
  margin-right: 10px;
}

button.disabled {
  background-color: #ccc;
  color: #999;
  cursor: not-allowed;
}

.broadcast-urls-container {
  display: none;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  text-align: center;
  overflow: auto;
}

.modal-content p {
  word-wrap: break-word;
}
.container {
  display: flex;
}

.left-section {
  flex: 1;
}

.right-section {
  flex: 1;
  margin-left: 20px;
}

.switch-container {
  display: flex;
  align-items: center;
}

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin-left: 10px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 20px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(20px);
}

.rune-selector-container,
.alkanes-selector-container {
  margin-bottom: 10px;
}

.rune-selector,
.alkanes-selector {
  width: 100%;
  padding: 5px;
  font-size: 16px;
}

.rune-utxo-list,
.alkanes-utxo-list {
  max-height: 900px;
  overflow-y: auto;
  border: 1px solid #ccc;
  padding: 10px;
}
