
table {
    width: 100%;
    border-collapse: collapse;
    border: none;
    border-spacing: 0;
    display: block;
    margin-top: 25px;
}

thead, tbody {
    display: table;
    width: 100%;
}


thead {
    background-color: #191919;
    color: white;
}

td {

    padding: 10px 5px;
}

/* first column */
td:first-child {
    width: calc(100% / 3) !important;
}

/* second column */
td:nth-child(2) {
    width: calc(100% / 3) !important;
}

/* third column */
td:nth-child(3) {
    width: calc(100% / 3) !important;
}


/* Anpassung für Mobilgeräte */
@media (max-width: 767px) {

    table {
        min-width: 95vw !important;
        width: 95vw !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    #spacing {
        width: 100%;
        height: 300px;
    }
}