body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 20px;
  background-color: #f0f0f0;
}

.container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.left-section,
.right-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.left-section {
  width: 60%;
}

.right-section {
  width: 35%;
}

h2 {
  margin-top: 0;
}

input[type="text"],
input[type="password"],
input[type="number"],
textarea,
select {
  width: 100%;
  padding: 8px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

button {
  background-color: #4caf50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
}

button:hover {
  background-color: #45a049;
}

.inscription-container {
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px;
  margin-bottom: 15px;
}

.inscription-type {
  margin-bottom: 10px;
}

.rune-mint-option {
  margin-bottom: 15px;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 4px;
}

.rune-mint-option label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  cursor: pointer;
}

.rune-mint-option input[type="checkbox"] {
  width: auto;
  margin: 0;
}

#runeMintFields {
  display: none;
  gap: 10px;
  flex-direction: column;
}

#runeMintFields input {
  margin-bottom: 8px;
}

#runeMintFields input[type="text"] {
  width: 100%;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.radio-group {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
}

.radio-group label {
  display: flex;
  align-items: center;
  font-size: 14px;
}

.radio-group input[type="radio"] {
  margin-right: 5px;
}

.batch-count {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.batch-count label {
  margin-right: 10px;
}

.switch-container {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin: 0 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: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #2196f3;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.fee-input-container {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.fee-input-container input {
  width: auto;
  flex-grow: 1;
}

.utxo-list-container {
  margin-top: 15px;
}

#utxoList {
  width: 100%;
  height: 150px;
  margin-bottom: 10px;
}

.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;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

/* File upload styles */
.file-upload-container {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
  margin-bottom: 15px;
}

.file-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.remove-all {
  background-color: transparent;
  color: #888;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
}

.drop-area {
  border: 2px dashed #ccc;
  border-radius: 4px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 15px;
  transition: border-color 0.3s ease;
}

.drop-area:hover {
  border-color: #4caf50;
}

.upload-icon {
  font-size: 36px;
  color: #666;
  margin-bottom: 10px;
}

.file-types {
  color: #888;
  font-size: 0.9em;
  margin-top: 5px;
}

.file-list-container {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
}

.file-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f0f0f0;
  padding: 8px;
  border-radius: 4px;
}

.file-item .file-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.file-item .file-number {
  background-color: #4caf50;
  color: white;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 0.8em;
}

.file-item .file-size {
  color: #888;
  font-size: 0.9em;
}

.remove-file {
  cursor: pointer;
  color: #888;
  font-size: 1.2em;
}

#mintingListContainer {
  max-height: 1000px;
  overflow-y: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px;
  margin-top: 15px;
}
