* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}

body {
  background: #0f172a;
  color: #fff;
}

.container {
  width: 95%;
  max-width: 700px;
  margin: auto;
  padding: 25px 0;
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.card {
  background: #1e293b;
  padding: 18px;
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, .25);
}

.card h3 {
  margin-bottom: 10px;
}

input {
  width: 100%;
  padding: 13px;
  border: none;
  outline: none;
  border-radius: 8px;
  background: #334155;
  color: #fff;
  margin-bottom: 10px;
  font-size: 16px;
}

button {
  width: 100%;
  padding: 13px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: .2s;
}

button:hover {
  background: #1d4ed8;
}

.online {
  background: #16a34a;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

.offline {
  background: #dc2626;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-weight: bold;
}

.bot-card {
  background: #334155;
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
}

.bot-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.code {
  background: #0f172a;
  padding: 10px;
  border-radius: 8px;
  margin-top: 8px;
  font-size: 18px;
  letter-spacing: 2px;
  text-align: center;
  color: #22c55e;
}

.status {
  margin-top: 8px;
  font-weight: bold;
}

.log {
  background: #0f172a;
  padding: 10px;
  border-radius: 8px;
  height: 220px;
  overflow: auto;
  font-size: 14px;
}

.log div {
  margin-bottom: 6px;
  border-bottom: 1px solid #334155;
  padding-bottom: 5px;
}

.logout {
  background: #dc2626;
  margin-top: 10px;
}

.restart {
  background: #f59e0b;
  margin-top: 10px;
  color: #000;
}
