body
{
    background-color: #000 !important;
    margin: 0;
    font-family: Arial, sans-serif;
    color: white;
}

/* =========================
   TITLE (RESPONSIVE)
   ========================= */
.wcs-title
{
    color: #007AFF;
    font-size: clamp(28px, 3vw, 52px);
    font-weight: bold;
    text-align: center;
    margin: 30px 0;
}

/* =========================
   TABLE LAYOUT
   ========================= */
#wcs-table
{
    width: calc(100% - 200px);
    margin: 0 100px;
    border-collapse: collapse;
}

/* =========================
   TABLE HEADER
   ========================= */
#wcs-table thead th
{
    background-color: #6A5ACD;
    color: white;
    padding: 12px;
    padding-left: 18px;
    text-align: left;
    font-weight: bold;

    /* ensure header is not locked by theme */
    font-size: inherit;
}

/* =========================
   TABLE BODY CELLS
   ========================= */
#wcs-table tbody td
{
    padding: 10px;
    padding-left: 18px;
    border-bottom: 1px solid #222;
    color: white;

    /* FORCE RESPONSIVE FONT SIZE */
    font-size: clamp(10px, 1.5vw, 22px) !important;
    line-height: 1.3;
}

/* =========================
   ROW HOVER EFFECT
   ========================= */
#wcs-table tbody tr:hover
{
    background-color: #111;
}

/* =========================
   HARD OVERRIDE SAFETY NET
   (prevents theme font locking)
   ========================= */
#wcs-table td,
#wcs-table th
{
    font-family: Arial, sans-serif !important;
}