/* Dark Theme Table Styles */
table {
  border-collapse: collapse;
  width: 100%;
  margin: 20px 0;
  background-color: #1a1a1a;
  border: 1px solid #333;
}

table th,
table td {
  border: 1px solid #333;
  padding: 12px 15px;
  text-align: left;
  color: #e0e0e0;
}

table th {
  background-color: #252525;
  font-weight: 600;
  border-bottom: 2px solid #444;
  color: #fff;
}

table tr:nth-child(even) {
  background-color: #1f1f1f;
}

table tr:hover {
  background-color: #2a2a2a;
}

/* Centered cells */
table td[align="center"],
table th[align="center"] {
  text-align: center;
}

/* Right aligned cells */
table td[align="right"],
table th[align="right"] {
  text-align: right;
}

/* Responsive tables */
@media (max-width: 768px) {
  table {
    font-size: 14px;
  }
  
  table th,
  table td {
    padding: 8px 10px;
  }
}
