body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #121212;
  color: #eee;
  margin: 0;
  padding: 2rem;
}

header {
  margin-bottom: 2rem;
}

.header-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.2rem;
  color: #00ff9d;
}

.install-tip {
  font-size: 1rem;
  color: #aaa;
  margin-bottom: 0.3rem;
}

pre {
  background: #1f1f1f;
  border-radius: 6px;
  padding: 0.5rem 1rem;
  display: inline-block;
  color: #00c3ff;
  font-size: 0.95rem;
}

.btn {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-left: 0.5rem;
  background: #00c3ff;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.btn:hover {
  background: #0099cc;
}

#searchInput {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 6px;
  background: #1f1f1f;
  color: #fff;
  font-size: 1rem;
}

#modulesTable {
  width: 100%;
  border-collapse: collapse;
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
}

#modulesTable thead {
  background: #222;
}

#modulesTable th, #modulesTable td {
  text-align: left;
  padding: 0.8rem 1rem;
}

#modulesTable th {
  cursor: pointer;
  color: #00ff9d;
}

#modulesTable tr:nth-child(even) {
  background: #181818;
}

#modulesTable tr:hover {
  background: #2a2a2a;
}

footer {
  margin-top: 3rem;
  text-align: center;
  color: #777;
}
