/* ===== Responsive Wrapper ===== */
.table-responsive-custom {
width: 100%;
overflow-x: auto;
padding-top: 15px;
}

/* ===== Table Styling ===== */
#myTable {
border-collapse: collapse;
width: 100%;
min-width: 1100px; /* ensures horizontal scroll */
}

/* ===== Full Grid Borders ===== */
#myTable th,
#myTable td {
border: 1px solid #999 !important;
padding: 10px;
text-align: left;
vertical-align: middle;
white-space: nowrap;
}

/* ===== Header Styling ===== */
#myTable thead th {
background-color: #f2f2f2;
font-weight: bold;
text-align: center;
}

/* ===== Zebra (optional) ===== */
#myTable tbody tr:nth-child(even) {
background-color: #fafafa;
}

/* ===== Mobile Fix ===== */
@media (max-width: 768px) {
.fbc-wrap{
padding-top: 40px;
}
#myTable {
min-width: 1100px;
}
}