body {
  background-color: #1e252f;
  color: #b6fef7;
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  background: #0f1115;
  color: cyan;
  padding: 10px;
  font-size: 1.5em;
  font-weight: bold;
  letter-spacing: 1px;
}

.container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 10px;
}

.section {
  border-top: 2px solid cyan;
  padding-top: 10px;
}

.section-title {
  text-align: center;
  font-size: 1.3em;
  color: #6ef0ff;
  margin-bottom: 10px;
}

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

.log-box {
  background: #10151b;
  border: 1px solid #2cf1ff;
  border-radius: 8px;
  padding: 10px;
  height: 250px;
  overflow-y: auto;
  white-space: pre-wrap;
  font-size: 13px;
  color: #f5f5f5;
}

.timestamp {
  position: fixed;
  top: 10px;
  right: 15px;
  color: #00ffee;
  font-size: 0.8em;
}

