/* General Styling */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #121212;
  /* Dark theme background */
  color: #e0e0e0;
  /* Text color */
}

/* Table Container */
.table-container {
  width: 100%;
  /* Full width */
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  background-color: #121212;
  /* Matches body background */
}

/* Table */
table {
  width: 100%;
  border-collapse: collapse;
  background-color: #1e1e1e;
  /* Dark table background */
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* Subtle shadow */
}

/* Table Header */
thead th {
  background-color: #333333;
  /* Darker header background */
  color: #ffffff;
  /* White header text */
  padding: 15px;
  text-align: center;
  font-size: 0.8rem;
  text-transform: capitalize;
  border-bottom: 2px solid #444444;
}

/* Table Body */
tbody tr {
  background-color: #222222;
  /* Matches table background */
  transition: background-color 0.3s ease;
}

tbody tr:nth-child(even) {
  background-color: #222222;
  /* Slightly lighter for striping */
}

tbody tr:hover {
  background-color: #333333;
  /* Highlight row on hover */
}

td {
  padding: 15px;
  border-bottom: 1px solid #444444;
  /* Subtle border */
  font-size: 0.95rem;
  color: #e0e0e0;
  /* Default text color */
  word-wrap: break-word;
  /* Prevents overflow */
  text-align: left;
}

/* Highlight Differences */
td.different,
td.number-different {
  background-color: #e53935;
  /* Red background for differences */
  color: #ffffff;
  /* White text for contrast */
  font-weight: bold;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .table-container {
    padding: 10px;
  }

  table {
    width: 100%;
    overflow-x: auto;
  }

  th,
  td {
    padding: 10px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {

  th,
  td {
    font-size: 0.8rem;
    padding: 8px;
  }
}