/* src/main.css */
html {
  box-sizing: border-box;
  --white: #fff;
  --dark-grey-opaque: rgba(50, 50, 50, 0.6);
}
html,
body {
  margin: 0;
  height: 100%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif,
    "Apple Color Emoji",
    "Segoe UI Emoji",
    "Segoe UI Symbol";
}
.row {
  display: flex;
  flex-direction: row;
}
.col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.box {
  display: flex;
}
.fullwh {
  width: 100%;
  height: 100%;
}
.box-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.solana-wallet {
  margin: 1rem;
  padding: 1rem;
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  font-family: inherit;
}
.connect-btn,
.disconnect-btn {
  background: #9945ff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background-color 0.2s;
}
.connect-btn:hover,
.disconnect-btn:hover {
  background: #7929d9;
}
.connect-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}
.wallet-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.wallet-address,
.wallet-balance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}
.address-label,
.balance-label {
  font-weight: 600;
  color: #333;
}
.address-value {
  font-family:
    "Monaco",
    "Menlo",
    "Ubuntu Mono",
    monospace;
  color: #666;
  cursor: pointer;
}
.balance-value {
  font-weight: 600;
  color: #9945ff;
}
.card {
  border: 1px solid #e1e5e9;
  border-radius: 8px;
  padding: 1rem;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  width: 100%;
  min-height: 120px;
}
.card-title {
  font-weight: bold;
  font-size: 1rem;
  color: #333;
  line-height: 1.2;
}
.card-values {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.card-value {
  font-family:
    "Monaco",
    "Menlo",
    "Ubuntu Mono",
    monospace;
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .card {
    width: calc(33.333% - 1rem);
    min-width: 200px;
  }
}
@media (max-width: 767px) {
  .card {
    width: calc(100% - 1rem);
    margin: 0.5rem 0.5rem;
  }
}
/*# sourceMappingURL=index.css.map */
