body {
  font-family: "Inter", sans-serif;
  background: #0b0b0b;
  color: #fff;
  margin: 0;
  padding: 0;
  text-align: center;
}

header {
  background: linear-gradient(90deg, #d19c1d, #ffcb4b);
  color: #0b0b0b;
  padding: 2rem;
  border-bottom: 3px solid #b88a1c;
}

h1 {
  margin: 0;
  font-size: 2rem;
}

header p {
  color: #231a05;
  margin-top: 0.5rem;
  font-weight: 500;
}

table {
  margin: 2rem auto;
  border-collapse: collapse;
  width: 90%;
  max-width: 1000px;
  background: #141414;
  box-shadow: 0 0 15px rgba(255, 202, 73, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

thead {
  background: #1e1e1e;
  color: #ffcb4b;
}

th, td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #2a2a2a;
}

th {
  position: relative;
  text-align: center; /* ✅ centre le texte dans les colonnes */
  vertical-align: middle;
}

.vesting-date {
  display: block;
  color: #ffedb0;
  font-size: 0.8rem;
  margin-top: 0.3rem;
  text-align: center;
  width: 100%;
}



.collection-name {
  color: #ffcb4b;
  font-family: "Baloo 2", cursive;
  font-size: 1.05rem;
}

.progress-container {
  width: 100%;
  height: 10px;
  background: #333;
  border-radius: 5px;
  overflow: hidden;
  margin-top: 6px;
}

.bar {
  height: 10px;
  border-radius: 5px;
  transition: width 1s ease-in-out;
}

.bar.immediate { background: #ffcb4b; }
.bar.year1 { background: #d19c1d; }
.bar.year2 { background: #a97e1b; }

td span {
  display: block;
  font-size: 0.85rem;
  color: #ffedb0;
  margin-top: 4px;
}

/* ✅ Effet hover doré sur les lignes */
tbody tr {
  transition: background 0.3s ease, transform 0.2s ease;
}

tbody tr:hover {
  background: rgba(255, 203, 75, 0.08);
  transform: scale(1.01);
  cursor: pointer;
}

footer {
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #ffcb4b;
  margin-top: 3rem;
  border-top: 1px solid #2a2a2a;
  background: #111;
}
/* --- Fix: Centrer uniquement les valeurs (pas les titres) 
   dans les deux premières colonnes du tableau --- */
table td:nth-child(1),
table td:nth-child(2) {
  text-align: center;
  vertical-align: middle;
}
