.table-container {
  width: 100%;
  overflow-x: auto; /* Responsive scroll on mobile */
  margin-bottom:30px;
}

.responsive-table {
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.responsive-table th, 
.responsive-table td {
  border: 1px solid #ddd;
  text-align: center;
  padding: 8px;
  white-space: nowrap;
}

/* Style first 2 rows in tbody as header */
.responsive-table tbody tr:nth-child(-n+2),.responsive-table tbody tr:nth-child(-n+2) strong {
  background-color: #0073e6;
  color: #fff !important;
  font-weight: bold;
}

/* Apply zebra stripes starting after row 2 */
.responsive-table tbody tr:nth-child(odd):not(:nth-child(-n+2)) {
  background-color: #f9f9f9;
}
.responsive-table tbody tr:nth-child(even):not(:nth-child(-n+2)) {
  background-color: #eaf3ff;
}

/* Hover effect only for data rows */
.responsive-table tbody tr:hover:not(:nth-child(-n+2)) {
  background-color: #d0ebff;
}