h2.spieltagauswahl {
    display: inline-block;
    margin-bottom: 20px;
    padding-right: 20px;
}

p {
    margin: 0 0 1em 0;
}

.titel {
    width: 300px;
}

#back, #next {
    cursor: pointer;
}

.spieltag {
    width: 20px;
}

.platzvorjahr {
    width: 20px;
}

input.datum {
    width: 24px;
    font-size: 8px;
}
.datum {
    width: 60px;
}

th span.datum {
    font-size: 11px;
}

table {
    border-collapse: collapse;
}


/* Zebra striping */
tr:nth-of-type(odd) {
    background: #eee;
}

th {
    padding: 6px 0;
    border: 1px solid #ccc;
    background: #333;
    color: white;
    font-weight: bold;
    text-align: center;
    width: 30px;
}

td {
    padding: 6px 0;
    border: 1px solid #ccc;
    text-align: center;
}

.koenig {
    background: #00ff00;
}

.dau {
    background: #ffff00;
    color: #000000;
}

@media screen and (max-width: 799px)
/*(min-device-width: 768px) and (max-device-width: 1024px) */
{

    table.responsive {
        width: 100%;
    }

    /* Force table to not be like tables anymore */
    table.responsive,
    .responsive thead,
    .responsive tbody,
    .responsive th,
    .responsive td,
    .responsive tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .responsive thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .responsive tr {
        border: 1px solid #ccc;
    }

    .responsive td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        height: 20px;
    }

    .responsive td:before {
        /* Now like a table header */
        position: absolute;
        /* Top/left values mimic padding */
        top: 6px;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    /*
    Label the data
    */
    .responsive td:before {
        content: attr(data-label);
    }

    .hide {
        display: none !important;
    }

}