/* Vesting page specific styles */
.vesting-body {
  background: #0E0F1E;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.vesting-container {
  background: #1C1F2E;
  color: white;
  border-radius: 1.5rem;
  padding: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vesting-header {
  margin-bottom: 2rem;
}

.vesting-header h1 {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.stat-card {
  background: rgba(28, 31, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
}

.stat-title {
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1rem;
}

.stat-value {
  font-size: 1.25rem;
  color: #3B82F6;
  margin-bottom: 0.25rem;
}

.history-section {
  background: rgba(28, 31, 46, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-top: 2rem;
}

.history-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: #fff;
}

.vesting-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
  background: rgba(28, 31, 46, 0.3);
  border-radius: 0.75rem;
  overflow: hidden;
}

.vesting-table th {
  background: rgba(28, 31, 46, 0.8);
  padding: 1rem;
  text-align: left;
  font-weight: 500;
  color: #fff;
}

.vesting-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vesting-table tr:last-child td {
  border-bottom: none;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .vesting-container {
    padding: 1.5rem;
    margin: 1rem auto;
  }

  .vesting-header h1 {
    font-size: 1.75rem;
  }

  .history-header {
    font-size: 1.75rem;
  }

  .vesting-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}