body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
}

table { border-collapse: collapse; width: 100%; box-shadow: 0 2px 5px rgba(0,0,0,0.1); background: white; }
th { background: #f0f0f0; }
th, td { padding: 10px 14px; border: 1px solid #ddd; text-align: left; }
tr:nth-child(even) { background-color: #fafafa; }
tr:hover { background-color: #f1f7ff; }



.container {
  display: flex;
  min-height: calc(100vh - 120px); /* Adjust for topbar + footer */
}

.sidebar {
  width: 200px;
  background: #222;
  color: white;
  padding: 1rem;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin: 10px 0;
}

.sidebar a {
  color: #ddd;
  text-decoration: none;
}

.sidebar a:hover {
  color: #fff;
}

.content {
  flex: 1;
  padding: 2rem;
  background: #fff;
}

.footer {
  background: #333;
  color: white;
  padding: 1rem;
  text-align: center;
}
.footer a{
  color: white;
}
