/* ================================================================================================================

    Table layout

    Author: Tim David Saxen, netzmal GmbH

    Usage:

    <table class="ejoin-table">
    <tr>
      <th>Col</th>
    </tr>
    <tr>
      <td>Col</td>
    </tr>
    </table>

   =============================================================================================================== */

.ejoin-table {
    width: 100%;
}

.ejoin-table tr:nth-child(odd) {
    background-color: #ffffff;
}

.ejoin-table tr:nth-child(even) {
    background-color: #f0f0f0;
}

.ejoin-table th {
    background-color: #002337;
    color: white;
    padding: 4px;
}

.ejoin-table td {
    color: black;
    padding: 4px;
    vertical-align: top;
    text-align: left;
}

.ejoin-table td {
    color: black;
    padding: 4px;
    vertical-align: top;
    text-align: left;
}