.table-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
    height: calc(100vh - 160px); /* Adjust height based on header and footer size */
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto; /* Allow vertical scrolling within the chat container */
    overflow-x: hidden; /* Prevent horizontal scrolling */
    background-color: white; /* Background color for the chat area */
    border-radius: 10px;
}

/* General table styling */
table {
    width: 100%;
    border-collapse: collapse;
    font-family: Arial, sans-serif;
}

/* Header styling */
thead tr {
    background-color: #004c8c; /* Dark blue header */
    color: white; /* White text */
}

thead th {
    padding: 10px;
    border: 1px solid #004c8c; /* Dark blue border */
    text-align: left;
}

/* Body row styling */
tbody tr:nth-child(even) {
    background-color: #f2f2f2; /* Light grey for even rows */
}

tbody tr:nth-child(odd) {
    background-color: white; /* White for odd rows */
}

tbody td {
    padding: 10px;
    border: 1px solid #ddd; /* Light grey border for cells */
    text-align: left;
}

/* Hover effect */
tbody tr:hover {
    background-color: #e9f4ff; /* Light blue for hover effect */
}

/* Link styling */
tbody td a {
    color: #004c8c; /* Dark blue link color */
    text-decoration: none;
}

tbody td a:hover {
    text-decoration: underline; /* Underline on hover */
}