body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #121212;
  color: white;
  text-align: center;
}

h1 {
  font-size: 3rem;
}

p {
  font-size: 1.5rem;
}

#status {
  margin-top: 20px;
  font-size: 2rem;
  font-weight: bold;
  color: #00ff00; /* Green for online */
}

#status.offline {
  color: #ff0000; /* Red for offline */
}

button {
  margin-top: 20px;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  background-color: #00aaff;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #0088cc;
}

#ip-address, #ping-time {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #ffaa00; /* Orange for additional info */
}

table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  margin: 40px 0;
  font-size: 1rem;
  background-color: #1e1e1e;
  border: 1px solid #333;
}

table th, table td {
  border: 1px solid #333;
  padding: 10px;
  text-align: left;
}

table th {
  background-color: #00aaff;
  color: white;
  font-weight: bold;
}

table tr:nth-child(even) {
  background-color: #2e2e2e;
}

table tr:hover {
  background-color: #444;
}
