body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
}

header {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}

header h1 {
  margin: 0;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 10px;
}

nav ul li a {
  color: white;
  text-decoration: none;
}

main {
  padding: 20px;
}

#profile {
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.profile-info {
  margin-bottom: 20px;
}

#owned-nfts {
  margin-top: 20px;
}

.nft-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-gap: 20px;
}

.nft-item {
  background-color: #f2f2f2;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

.nft-item img {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.nft-thumbnail {
  width: 60px;
  height: auto;
  object-fit: auto;
  margin-right: 15px;
}
.nft-id {
  word-break: break-all;
  overflow-wrap: break-word;
}
footer {
  background-color: #333;
  color: white;
  padding: 10px;
  text-align: center;
}
.button-style {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4CAF50; /* Green background */
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.button-style:hover {
  background-color: #45a049;
}
.view-details-button {
    display: inline-block;
    padding: 8px 16px;
    margin-top: 10px;
    background-color: #2196F3;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
}

.view-details-button:hover {
    background-color: #1976D2;
}
/* NFT Sales Management Styling */

/* Container for sales management controls */
.sales-management {
    margin: 15px 0;
    padding: 10px;
    background-color: #f8f9fa;
    border-radius: 5px;
}

/* Sale type dropdown styling */
.sale-type-select {
    width: 30%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Price input container for centering */
.price-container {
    text-align: center;
    margin: 15px 0;
}

/* Price label styling */
.price-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

/* Price input field styling */
.price-input {
    width: 150px;  /* Fixed width for better appearance */
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;  /* Center the numbers in input */
    margin: 0 auto;     /* Center the input field itself */
}

/* Update sale button styling */
.update-sale-button {
    width: 25%;
    padding: 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

.update-sale-button:hover {
    background-color: #45a049;
}

/* Info note styling */
.sale-info .note {
    font-size: 0.9em;
    color: #666;
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
    margin: 20px 0 0;
}

.tab-button {
    padding: 12px 24px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.tab-button:hover {
    color: #333;
    background: #f5f5f5;
}

.tab-button.active {
    color: #2196F3;
    border-bottom-color: #2196F3;
}

.tab-content {
    display: none;
    padding: 20px 0;
}

.tab-content.active {
    display: block;
}

/* Founder Dashboard */
.founder-pitch {
    text-align: center;
    padding: 30px;
}

.founder-pitch h3 {
    color: #333;
    margin-bottom: 15px;
}

.founder-pitch .cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #FFD700, #FFA000);
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    margin-top: 15px;
    transition: transform 0.2s;
}

.founder-pitch .cta-button:hover {
    transform: translateY(-2px);
}

.founder-card {
    border: 2px solid #ddd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.founder-card.tier-gold {
    border-color: #FFD700;
    background: linear-gradient(135deg, #fff 0%, #fff8dc 100%);
}

.founder-card.tier-silver {
    border-color: #C0C0C0;
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
}

.founder-card.tier-bronze {
    border-color: #CD7F32;
    background: linear-gradient(135deg, #fff 0%, #fdf5e6 100%);
}

.founder-card h3 {
    margin: 0 0 15px;
}

.founder-card .tier-gold-text { color: #B8860B; }
.founder-card .tier-silver-text { color: #808080; }
.founder-card .tier-bronze-text { color: #CD7F32; }

.founder-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
    margin: 15px 0;
}

.founder-stat {
    background: rgba(0,0,0,0.04);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
}

.founder-stat .stat-label {
    font-size: 0.85em;
    color: #666;
    display: block;
}

.founder-stat .stat-value {
    font-size: 1.3em;
    font-weight: bold;
    color: #333;
    display: block;
    margin-top: 4px;
}

.claim-section {
    margin: 20px 0;
    padding: 15px;
    background: #e8f5e9;
    border-radius: 8px;
    text-align: center;
}

.claim-section .claimable-amount {
    font-size: 1.5em;
    font-weight: bold;
    color: #2e7d32;
    margin: 10px 0;
}

.claim-button {
    display: inline-block;
    padding: 12px 32px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
}

.claim-button:hover {
    background: #388E3C;
}

.claim-button:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.claim-history {
    margin-top: 20px;
}

.claim-history table {
    width: 100%;
    border-collapse: collapse;
}

.claim-history th, .claim-history td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
    font-size: 0.9em;
}

.claim-history th {
    background: #f5f5f5;
}

.tier-positions {
    margin-top: 20px;
}

.tier-positions table {
    width: 100%;
    border-collapse: collapse;
}

.tier-positions th, .tier-positions td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.tier-positions th {
    background: #f5f5f5;
}

#founder-pool-transparency {
    margin-top: 32px;
}

.pool-transparency-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9em;
}

.pool-transparency-table th,
.pool-transparency-table td {
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.pool-transparency-table th {
    background: #f5f5f5;
}

.pool-transparency-note {
    font-size: 0.82em;
    color: #888;
    margin-top: 8px;
}

.pool-wallet-address {
    font-size: 0.78em;
    word-break: break-all;
}