/* === TABLES & DATA === */
table {
    width: 100%; /* Full width of container */
    border-collapse: collapse; /* Remove double borders */
    margin-bottom: 1.5em; /* Space below table */
    background-color: #1A1A1A; /* Dark background for table */
    color: #EAEAEA; /* Light text for readability */
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
}

/* Table header */
th {
    background-color: #FFDD00; /* Bright yellow header */
    color: #121212; /* Dark text for contrast */
    font-weight: 700;
    padding: 0.8em 1em;
    text-align: left;
}

/* Table cells */
td {
    padding: 0.8em 1em;
    border-bottom: 1px solid #2E2E2E; /* subtle row separation */
}

/* Optional: Hover effect for rows */
tr:hover {
    background-color: #2E2E2E;
}