.records {
    width: 100%;
    user-select: none;
    text-align: left;
}

.records th {
    height: 50px;
    background-color: var(--primary-color);
    padding-left: 20px;
    font-size: 1.2rem;
}

.records td {
    height: 50px;
    padding-left: 20px;
}

.records th:last-child,
.records td:last-child {
    padding: 0;
    min-width: 140px;
    text-align: center;
}

.records tr:hover {
    background-color: var(--yellon);
}



@media (max-width: 500px) {
    
    .records {
        border-spacing: 5px;
        margin-top: 50px;
    }

    .records thead {
        display: none;
    }

    .records tr {
        box-shadow: 0 1px 3px var(--shadow-color);
    }

    .records td:not(:first-child) {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
    }

    .records td {
        margin: 10px 0;
    }

} 