/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
 
.hm-cch-post-table {
    width: 100%;
    border-collapse: collapse;
    display: table; /* Definieren Sie das Elternelement als Tabelle */
}

.hm-cch-post-table-row {
    display: table-row;
    width: 100%; /* Stellen Sie sicher, dass jede Zeile die volle Breite einnimmt */
}

.hm-cch-post-table-cell {
    display: table-cell;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    width: 50%; /* Teilen Sie die Breite gleichmäßig zwischen den Zellen auf */
}

.hm-cch-post-table-header {
    background-color: #f5f5f5;
}

.hm-cch-post-table-cell a {
    text-decoration: none;
    color: #0073aa;
}

.hm-cch-post-table-cell a:hover {
    text-decoration: underline;
}

.hm-cch-post-table-cell-date {
    text-align: right;
    width: 50%;
}