/* Background of the table container */
.table-container {
    overflow-x: auto;
    background: #000;
    padding: 10px;
}

/* Table styling */
.responsive-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: #fff; /* White text */
}

/* Table header */
.responsive-table th {
    background-color: #111;
    color: #fff; /* Orange titles */
    padding: 10px;
    text-align: left;
}

/* Table rows */
.responsive-table td {
    padding: 10px;
    color: #fff; /* White text */
}

/* Links */
.responsive-table a {
    color: #fff; /* Orange links */
    font-weight: bold;
}

.entry-content thead th, .entry-content tr th {
    color: #000 !important;
    background: #fff !important;
}

table.responsive-table {
    border-right: none !important;
    border-left: none !important;
}

.et_pb_module.et_pb_text.et_pb_text_3.et_pb_text_align_left.et_pb_bg_layout_light {
    padding-left: 2%;
    padding-right: 2%;
}


/* Row border lines */
.responsive-table tr {
    border-bottom: 1px solid #333;
}

/* Mobile */
@media (max-width: 768px) {
    .responsive-table th,
    .responsive-table td {
        font-size: 12px;
        padding: 6px;
    }
}
