body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #121212;
  color: white;
}

h1 {
  text-align: center;
  padding: 20px;
}

.container {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 20px;
  padding: 40px;
}

.card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #1e1e1e;
  border-radius: 12px;
  padding: 120px;
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.card:hover {
  background-color: #2a2a2a;
  transform: scale(1.05);
}

.status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 10px;
}

.online {
  background-color: #4caf50; /* green */
}

.offline {
  background-color: #f44336; /* red */
}
