/* This file contains CSS classes for tables */

.table-primary {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 0.9em;
    min-width: 400px;
    background-color: var(--light-purple);
    color: var(--off-white);
    border-radius: 5px 5px 0 0;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(155, 255, 155, 0.01);
}

.table-primary thead tr {
    background-color: var(--duolingo-grey-text);
    color: var(--off-white);
    text-align: left;
    font-weight: bold;
}

.table-primary th,
.table-primary td {
    padding: 12px 15px;
}

.table-primary tbody tr {
    border-bottom: 1px solid var(--duolingo-grey-border);
}

.table-primary tbody tr:nth-of-type(even) {
    background-color: var(--dark-purple);
}

.table-primary tbody tr:last-of-type {
    border-bottom: 2px solid var(--duolingo-grey-text);
}