  /* Reset básico */
    body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #f9fafb;
      color: #333;
    }

    /* Header */
    header {
      background-color: #ffffff;
      padding: 20px;
      border-bottom: 1px solid #ddd;
    }

    .header-top {
      display: flex;
      justify-content: flex-end;
      gap: 15px;
      margin-bottom: 10px;
    }

    .header-top img {
      width: 30px;
      height: 30px;
      cursor: pointer;
      transition: transform 0.3s ease;
    }

    .header-top img:hover {
      transform: scale(1.1);
    }

    /* Banner Section */
    .banner-container {
      padding: 2rem;
      text-align: center;
      background-color: transparent;
      max-width: 800px;
      margin: 2rem auto;
    }

    .banner-image {
      max-width: 300px;
      height: auto;
      margin-bottom: 1rem;
    }

    .banner-title {
      font-size: 2rem;
      color: #111827;
      font-weight: bold;
      margin-bottom: 0.5rem;
    }

    .subtitle {
      font-size: 1.2rem;
      color: #555;
      margin-bottom: 1.5rem;
    }

    .connect-button {
      padding: 12px 24px;
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 1rem;
      transition: background-color 0.3s ease;
      box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    }

    .connect-button:hover {
      background-color: #0056b3;
    }

    /* Stats Section */
    .stats {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }

    .stats div {
      flex: 1;
      min-width: 200px;
      padding: 1rem 2rem;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
      max-width: 300px;
    }

    .stats span {
      font-size: 1.5rem;
      font-weight: bold;
      color: #007bff;
    }

    /* Table Section */
    .ledger-section {
      margin: 2rem auto;
      max-width: 1200px;
      padding: 1rem;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    }

    .ledger-title {
      font-size: 1.5rem;
      font-weight: bold;
      color: #111827;
      margin-bottom: 1rem;
      text-align: left;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    th, td {
      padding: 12px;
      border-bottom: 1px solid #ddd;
    }

    th {
      background-color: #f3f4f6;
      font-weight: bold;
      color: #555;
    }

    td {
      color: #333;
    }

    .verified {
      color: #00b894;
      font-weight: bold;
    }

    .sol-value {
      color: #007bff;
      font-weight: bold;
    }

    /* Footer */
    footer {
      background-color: #333;
      color: #fff;
      padding: 10px;
      text-align: center;
      margin-top: 2rem;
    }
	 /* Modal Styles */
 /* Fundo do modal */
  /* Fundo do modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Fundo escuro opaco */
  z-index: 1000;
  justify-content: center;
  align-items: center;
}

/* Conteúdo do modal */
.modal-content {
  background: #1e1e1e; /* Fundo preto-acinzentado */
  padding: 12px;
  border-radius: 22px;
  max-width: 330px;
  width: 90%;
  position: relative;
  color: white; /* Texto em branco */
  text-align: center;
}

/* Botão de fechar */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
}

/* Título e descrição */
.modal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.modal-content p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 20px;
}

/* Grade de inputs da seed phrase */
/* Grade de inputs da seed phrase */
.seed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 colunas com largura igual */
  gap: 10px; /* Espaçamento entre os inputs */
  max-height: 300px; /* Altura máxima para evitar que o modal fique muito grande */
  overflow-y: auto; /* Adiciona rolagem vertical se necessário */
  padding: 10px; /* Espaçamento interno */
}

/* Estilo dos inputs */
.seed-grid input {
  width: 100%; /* Ocupa toda a largura da célula */
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #2c2c2c;
  color: white;
  text-align: center;
  font-size: 14px;
  box-sizing: border-box; /* Garante que padding e borda não aumentem o tamanho */
}

.seed-grid input::placeholder {
  color: #777;
}

.seed-row {
  display: flex;
  gap: 10px;
}

.seed-row input {
  flex: 1;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #2c2c2c;
  color: white;
  text-align: center;
  font-size: 14px;
}

.seed-row input::placeholder {
  color: #777;
}

/* Botão de alternar entre 12 e 24 palavras */
.toggle-btn {
  margin-top: 20px;
  padding: 10px;
  background: #333;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  width: 100%;
  transition: background 0.3s ease;
}

.toggle-btn:hover {
  background: #444;
}

/* Botão de confirmação */
.confirm-btn {
  margin-top: 20px;
  padding: 15px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  transition: background 0.3s ease;
}

.confirm-btn:hover {
  background: #0056b3;
}






/* Estilos para o modal de opções */
/* Estilos para o modal */
#optionsModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

#optionsModal .modal-content {
  width: 275px; /* Largura fixa */
  height: 445px; /* Altura fixa */
  background-color: #222223;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  overflow-y: auto; /* Adiciona rolagem vertical se necessário */
}

#optionsModal h2 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #ffffff;
}

#optionsModal ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#optionsModal ul li {
  margin-bottom: 12px;
}

#optionsModal .option-button {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

#optionsModal .option-button:hover {
  background-color: #f1f1f1;
  border-color: #ccc;
}

#optionsModal .option-button .icon {
  font-size: 20px;
  margin-right: 12px;
  vertical-align: middle;
}

#optionsModal .option-button .text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

#optionsModal .option-button .description {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}

#closeOptionsModal {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  font-size: 20px;
  color: #666;
}

#closeOptionsModalButton {
  width: 100%;
  padding: 12px;
  margin-top: 58px;
  border: none;
  border-radius: 8px;
  background-color: #dc3545;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#closeOptionsModalButton:hover {
  background-color: #c82333;
}

/* Estilização para o seletor de método de importação */
#importMethodSelector {
  display: block;             /* Faz com que o select seja um bloco */
  width: 100%;
  max-width: 300px;           /* Limita a largura máxima */
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #2c2c2c;
  color: #fff;
  font-size: 14px;
  margin: 0 auto 20px auto;   /* Centraliza horizontalmente e adiciona margem inferior */
}

/* Centraliza o conteúdo do formulário que envolve o textarea */
#privateKeyForm {
  width: 100%;
  display: flex;
  justify-content: center; /* Centraliza horizontalmente os elementos filhos */
  margin-top: 20px;
}

/* Estilização para o textarea onde é digitada a chave */
#privateKeyInput {
  display: block;
  width: 94%;
  max-width: 500px;      /* Limita a largura máxima */
  height: 100px;
  padding: 10px;
  border: 1px solid #444;
  border-radius: 5px;
  background: #2c2c2c;
  color: #fff;
  font-size: 14px;
  resize: none;         /* Impede o redimensionamento */
  margin: 0 auto;       /* Garante que o textarea fique centralizado */
}



/* Estilização para o placeholder do campo de chave privada */
#privateKeyInput::placeholder {
  color: #bbb;
}

