/* ===== HODL Explorer (IE) ===== */
.explorer-address-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 6px;
  background: #ece9d8;
  border-bottom: 1px solid #d4d0c8;
}

.explorer-address-label {
  font-size: 11px;
  font-family: var(--font-system);
  white-space: nowrap;
  color: #000;
}

.explorer-address-input {
  flex: 1;
  height: 20px;
  padding: 0 4px;
  font-size: 11px;
  font-family: var(--font-system);
  border: 1px solid #7f9db9;
  background: #fff;
  outline: none;
}

.explorer-go-btn {
  padding: 1px 8px;
  font-size: 11px;
  font-family: var(--font-system);
  background: linear-gradient(180deg, #fff 0%, #ece9d8 100%);
  border: 1px solid #999;
  border-radius: 2px;
  cursor: pointer;
}

.explorer-go-btn:hover {
  background: linear-gradient(180deg, #fff 0%, #e0ddd0 100%);
}

.explorer-links-bar {
  display: flex;
  gap: 2px;
  padding: 2px 6px;
  background: #ece9d8;
  border-bottom: 1px solid #d4d0c8;
  flex-wrap: wrap;
}

.explorer-link {
  font-size: 10px;
  color: #0066cc;
  text-decoration: none;
  padding: 1px 6px;
  border-radius: 2px;
  font-family: var(--font-system);
  cursor: pointer;
}

.explorer-link:hover {
  background: rgba(0,102,204,0.1);
  text-decoration: underline;
}

.explorer-iframe {
  width: 100%;
  height: 100%;
  border: none;
}
