body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  display: flex;
}

.sidebar {
  width: 220px;
  background: #0A3D62;
  color: white;
  height: 100vh;
  padding: 20px;
}

.sidebar h2 {
  color: #F39C12;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  padding: 10px;
  cursor: pointer;
}

.sidebar li.active,
.sidebar li:hover {
  background: #F39C12;
}

.main {
  flex: 1;
  padding: 20px;
  background: #f4f6f9;
}

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

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.table-section {
  margin-top: 20px;
  background: white;
  padding: 20px;
  border-radius: 10px;
}
}