body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f4f7fb;
}

/* Dashboard Layout */
.dashboard {
  display: flex;
}

/* Sidebar */
.sidebar {
  width: 220px;
  background: #0a2540;
  color: white;
  height: 100vh;
  padding: 20px;
}

.sidebar h2 {
  margin-bottom: 20px;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 15px 0;
  cursor: pointer;
}

/* Main */
.main {
  flex: 1;
  padding: 30px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
}

/* Progress */
.progress-box {
  margin-top: 30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

.progress-bar {
  background: #eee;
  height: 10px;
  border-radius: 5px;
  margin-top: 10px;
}

.progress {
  background: #1d4ed8;
  height: 10px;
  border-radius: 5px;
}

/* Buttons */
.btn {
  padding: 10px 20px;
  background: #1d4ed8;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Actions */
.actions {
  margin-top: 30px;
}

/* Table */
.table {
  margin-top: 30px;
  background: white;
  padding: 20px;
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}