/* Custom styling for the Data Table with separate header and row borders */
.custom-table-styled_fd333371 table {
    border-collapse: separate !important;
    border-spacing: 0 8px !important; /* Space between rows */
}

/* Header style and border */
.custom-table-styled_fd333371 th {
    background-color: #1A1A1A !important;
    color: #E30000 !important;
    border-top: 2px solid #E30000 !important;
    border-bottom: 3px double #E30000 !important;
    padding: 12px 16px !important;
}

/* Rows style and border */
.custom-table-styled_fd333371 tr td {
    border-top: 1px solid #444444 !important;
    border-bottom: 1px solid #444444 !important;
    padding: 12px 16px !important;
}

/* Left & Right border caps to make rows look individual */
.custom-table-styled_fd333371 tr td:first-child {
    border-left: 1px solid #444444 !important;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
.custom-table-styled_fd333371 tr td:last-child {
    border-right: 1px solid #444444 !important;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

/* Zebra row backgrounds */
.custom-table-styled_fd333371 tr:nth-child(odd) td {
    background-color: #1A1A1A !important;
}
.custom-table-styled_fd333371 tr:nth-child(even) td {
    background-color: #2A2A2A !important;
}
