.dashboard-container {
  padding: 100px 5% 80px;
}

/* ================= TOP ================= */

.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.dashboard-top h1 {
  font-size: 2.5rem;
  font-weight: 800;
}

.dashboard-top p {
  color: var(--color-primary);
}

/* ================= STATS ================= */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: #071a12;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,133,0.1);
}

.stat-card.highlight {
  border: 1px solid var(--color-primary);
}

.progress-bar {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  margin: 10px 0;
}

.progress {
  height: 6px;
  background: var(--color-primary);
  border-radius: 10px;
}

.success-text {
  color: var(--color-primary);
}

.danger-text {
  color: #ff5252;
}

/* ================= TABS ================= */

.tabs {
  display: flex;
  gap: 25px;
  border-bottom: 1px solid rgba(0,255,133,0.1);
  margin-bottom: 30px;
}

.tabs button {
  background: none;
  border: none;
  color: #aaa;
  padding-bottom: 10px;
  cursor: pointer;
}

.tabs .active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

/* ================= GRID ================= */

.dashboard-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
}

/* ================= BOOKINGS ================= */

.section-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.booking-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #081e14;
  border: 1px solid rgba(0,255,133,0.1);
}

.date-badge {
  width: 60px;
  text-align: center;
  background: rgba(0,255,133,0.1);
  border-radius: 12px;
  padding: 8px;
}

.date-badge strong {
  font-size: 18px;
  color: var(--color-primary);
}

.booking-actions {
  display: flex;
  gap: 10px;
}

/* ================= SIDEBAR ================= */

.activity-card,
.upgrade-card {
  background: #071a12;
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(0,255,133,0.1);
  margin-bottom: 25px;
}

.upgrade-card {
  background: var(--color-primary);
  color: black;
}

.btn-dark {
  background: black;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}

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

  .dashboard-top {
    flex-direction: column;
    gap: 20px;
  }
}
