/* Responsive Container */
.table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 15px;
}

/* Table */
.responsive-table {
    width: 100%;
    min-width: 700px;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border-radius: 8px;
    overflow: hidden;
}

/* Header */
.responsive-table thead {
    background: #003aa8;
    color: #fff;
}

.responsive-table th {
    padding: 16px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
}

/* Body */
.responsive-table td {
    padding: 16px;
    border-bottom: 1px solid #e4e4e4;
    vertical-align: top;
}

/* Zebra Striping */
.responsive-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

/* Hover Effect */
.responsive-table tbody tr:hover {
    background: #eef6ff;
    transition: background-color 0.3s ease;
}

/* Mobile */
@media (max-width: 768px) {
  .responsive-table th,
  .responsive-table td {
      padding: 12px;
      font-size: 14px;
  }
}