/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 20 2025 | 17:59:52 */
/* Full table styling */
table {
  width: 100% !important;
  border-collapse: collapse;
  border: 1px solid #ddd;
  font-family: inherit;
  font-size: 16px;
  margin: 20px 0;
  background: none !important; /* remove any white background */
}

/* Table header cells */
th {
  border: 1px solid #ddd;
  padding: 10px 12px;
  font-weight: 700; /* make header bold */
  text-align: left;
  background: none !important; /* remove background */
}

/* Table body cells */
td {
  border: 1px solid #ddd;
  padding: 10px 12px;
  vertical-align: middle;
  background: none !important; /* remove any white/striped background */
}

/* Remove alternating background color if previously applied */
tr:nth-child(even),
tr:nth-child(odd) {
  background: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  table {
    display: block;
    width: 100% !important;
    overflow-x: auto;
    white-space: nowrap;
  }

  th, td {
    padding: 8px 10px;
    font-size: 14px;
  }
}
