/* Table layout */
.draft-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

/* Header cells – dark background, lighter text */
.draft-table thead th {
    background-color: #212326;         /* Slightly lighter than page bg */
    color: #ffffff;
    padding: 0.75rem 0.5rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #3b3f44;
}

/* Body cells */
.draft-table tbody td {
    padding: 0.6rem 0.5rem;
    border-bottom: 1px solid #3b3f44;
}

/* Zebra striping – makes rows easier to read */
.draft-table tbody tr:nth-child(even) {
    background-color: #151618;
}

/* Hover effect */
.draft-table tbody tr:hover {
    background-color: #26292d;
}

/* Links inside the table (if you keep Wikipedia links) */
.draft-table a {
    color: #71a6ff;                     /* Wikipedia link blue in dark mode */
    text-decoration: none;
}
.draft-table a:hover {
    text-decoration: underline;
}

/* Add bottom border to rows at interval set @ .draft-table */
.draft-table tr.border-row {
    border-bottom: 3px solid tan;
}

.QB {	color: #e08282;}
.RB {	color: #8ccf8c;}
.WR {	color: #dedb97;}
.TE {	color: #97acde;}
.K {	color: #a684c2;}
.DEF {	color: #e3a976;}
.keep {	font-style: italic; background-color: #000; color: #03ff00;}
.trade { border: thin solid red;}

