body {
  background-color: #0e1117;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e4e6eb;
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
}

.title {
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1c1f26;
  margin-bottom: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  border-radius: 8px;
  overflow: hidden;
}

th, td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #333;
}

th {
  background-color: #22252c;
  color: #ffb703;
  font-size: 18px;
}

td {
  font-size: 16px;
}

tr:hover {
  background-color: #2a2e38;
}

.spacer {
  height: 60px;
}

button {
  background-color: #3a86ff;
  border: none;
  color: white;
  padding: 6px 12px;
  text-align: center;
  font-size: 14px;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}
button:disabled {
  background-color: #555;
  cursor: not-allowed;
}
button:disabled:hover {
  background-color: #555;
}
button:focus {
  outline: none;
}
button:active {
  background-color: #0056b3;
}