.csv-inner {

}
.csv-inner table {
    width: 100%; /* Sets the table to take up the full width of its container */
    border-collapse: collapse; /* Removes the space between the borders */
    margin: 20px 0; /* Adds vertical spacing around the table */
    font-family: Arial, sans-serif; /* Sets a clean, readable font */
}

th, td {
    padding: 8px 12px; /* Adds space around the content in each cell */
    border: 1px solid #ddd; /* Adds a light border around each cell */
    text-align: left; /* Aligns the text to the left */
}

th {
    background-color: #f2f2f2; /* Sets a background color for the header cells */
    color: #333; /* Sets the text color for the header cells */
    text-transform:uppercase;
    font-size:14px;
    position: sticky;
    top:0;
}

tr:nth-child(even) {
    background-color: #f9f9f9; /* Sets a background color for even rows */
}

tr:hover {
    background-color: var(--color-light-gray);;
}