/* Contract Address Section - Ultra-Minimal */
.contract-section {
  margin-top: 1.5rem;
  text-align: center;
}

.contract-container {
  display: inline-block;
}

.contract-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  font-weight: 300;
}

.contract-display {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.contract-address {
  font-family: 'Courier New', monospace;
  color: #ffffff;
  font-size: 0.8rem;
  background: none;
  border: none;
  padding: 0.25rem 0;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.contract-address.copied {
  color: #10B981;
}

.copy-button {
  background: none;
  color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 0.5rem;
}

.copy-button:hover {
  color: rgba(255, 255, 255, 0.8);
}

.copy-button i {
  font-size: 0.7rem;
}

/* Mobile optimizations */
@media (max-width: 768px) {
  .contract-address {
    font-size: 0.7rem;
    word-break: break-all;
    text-align: center;
  }
  
  .copy-button {
    width: 18px;
    height: 18px;
    margin-left: 0.25rem;
  }
  
  .copy-button i {
    font-size: 0.65rem;
  }
}