.nav-link {
  min-width: 130px;
}

table {
    width: 100%;
    table-layout: auto;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    white-space: nowrap; /* Prevent text from wrapping inside cells */
    overflow: hidden; /* Hide text overflow */
    text-overflow: ellipsis; /* Show ellipsis when text overflows */
}