@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");

/* Base table styles */
.generic-table {
    table-layout: fixed;
    width: 100%; /* Adjust as needed for specific tables */
    border-collapse: collapse;
}

    .generic-table th,
    .generic-table td {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding: 8px 12px;
        vertical-align: middle;
        border: 1px solid #dee2e6;
    }

/* Column size classes */
.pcol-xs {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
}

.pcol-s {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
}

.pcol-m {
    width: 180px;
    min-width: 180px;
    max-width: 180px;
}

.pcol-l {
    width: 240px;
    min-width: 240px;
    max-width: 240px;
}

.pcol-xl {
    width: 300px;
    min-width: 300px;
    max-width: 300px;
}

/* Responsive container */
.table-responsive .generic-table {
    margin-bottom: 0;
}