/* Table Styles */
.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 10px;
  border: 2px solid #c4c4c4;
}

table {
  width: 100%;
  border-collapse: collapse;
  background-color: #f0f0f0;
  margin: 0;
  font-size: 16px;
}

table thead {
  background-color: #1090c7;
  color: #ffffff;
}

table thead th {
  padding: 12px 15px;
  text-align: left;
  font-weight: 600;
  border-right: 1px solid #0077B6;
  border-bottom: 2px solid #0077B6;
  white-space: nowrap;
}

table thead th:last-child {
  border-right: none;
}

table tbody tr {
  border-bottom: 1px solid #d0d0d0;
  transition: background-color 0.2s ease;
}

table tbody tr:last-child {
  border-bottom: none;
}

table tbody tr:hover {
  background-color: #e0e0e0;
}

table tbody td {
  padding: 12px 15px;
  vertical-align: top;
  border-right: 1px solid #d0d0d0;
}

table tbody td:last-child {
  border-right: none;
}

table tbody td code {
  background-color: #dadada;
  border: 1px solid #c4c4c4;
  border-radius: 4px;
  padding: 2px 6px;
  font-family: Consolas, 'Roboto Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Liberation Mono', 'Courier New', monospace;
  font-size: 14px;
  white-space: nowrap;
}

/* Responsive table */
@media (max-width: 768px) {
  table {
    font-size: 14px;
  }

  table thead th,
  table tbody td {
    padding: 10px 12px;
  }
}
