* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background-color: #f2f2f2;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-content {
  text-align: center;
  padding: 20px;
  max-width: 800px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
}

.logo img {
  width: 35px;
}

.subtext {
  font-size: 0.9rem;
  color: #555;
  margin-top: 8px;
  line-height: 1.5;
}

.main {
display: flex;
flex-direction: column;
align-items: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
}
.main-content {
  display: flex;
  gap: 20px;
  padding: 20px;
 
  width: 100%;
  max-width: 1200px;
}
.header-content{
  padding-top: 100px;
}

.sidebar {
  background: white;
  border-radius: 10px;
  width: 280px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  overflow-y: auto;
  height: 500px;
   border: 1px solid #ccc;
}

.search {
  padding: 12px;
  border-bottom: 1px solid #eee;
}
.header-content h1{
  font-size: 3rem;
}

.search input {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

.networks {
  list-style: none;
}

.networks li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  padding: 12px 16px;
  border-bottom: 1px solid #eee;
}

.networks li:hover {
  background-color: #f9f9f9;
}

.network-header {
  display: flex;
  align-items: center;

  gap: 8px;
}

.tag {
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
}

.evm {
  background-color: #2d8cff;
}

.solana {
  background-color: #8b46ff;
}

.stats {
  text-align: right;
  font-size: 0.85rem;
  color: #777;
}

.stats strong {
  display: block;
  color: #000;
}

.content {
  flex: 1;
  background: white;
  border-radius: 10px;
   border: 1px solid #ccc;
  padding: 40px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.no-address {
  text-align: center;
}
.no-address h2{
  margin: 1rem 0;
}
.no-address p{
  line-height: 1.6;
}

.icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.address-form {
  display: flex;
  justify-content: center;
  margin: 20px 0;
  gap: 10px;
  width: 100%;
  
}

.address-form input {
  width: 70%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
}

.view-btn {
  background: #7b61ff;
  border: none;
  color: white;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
}

.view-btn:hover {
  background: #6547ff;
}

.connect-wallet {
  display: flex;
  width: 80%;
  align-items: center;
  text-align: center;
  justify-content: center;
  background: #35a86f;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  margin: 0 auto;
  border-radius: 8px;
  font-weight: 600;
}

.connect-wallet:hover {
  background: #2d8f5f;
}

.divider {
  margin: 20px 0;
  color: #999;
  font-size: 0.9rem;
}

.hint {
  margin-top: 20px;
  color: #777;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .header-content{
    padding-top: 20px;
  }
  .main-content {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
  }
}
