/* General table styles */
table {
    width: 100%;
    border-collapse: collapse;
    table-layout: auto; /* Allow columns to adjust based on content */
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

td {
    white-space: pre-wrap;
    word-wrap: break-word;
}

/* Dynamically adjusting column widths */
td:nth-child(1), /* Date */
td:nth-child(2), /* AO */
td:nth-child(3) { /* Q */
    min-width: 100px;  /* Ensure columns don't collapse too much */
}

/* Optional: Give the backblast column some space */
td:nth-child(4) {
    min-width: 200px; /* Backblast column has more room for larger text */
}