body {
    font-family: Arial, sans-serif;
    max-width: 700px;
    margin: auto;
    padding: 40px;
    background: #f5f5f5;
}

a.button {
    display:block;
    padding:12px;
    margin-bottom:10px;
    background:#f7f7f7;
    border-radius:8px;
    text-decoration:none;
    color:black;
}

a.button:hover {
    background:#eaeaea;
}
.container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

/* linke Spalte (Inbox) */
.left {
    flex: 2;
    background: white;
    padding: 20px;
    border-radius: 10px;
}

/* rechte Spalte (Sortierung) */
.right {
    flex: 1;
    background: white;
    padding: 20px;
    border-radius: 10px;
    position: sticky;
    top: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: left;
    vertical-align: top;
}

/* keine sichtbaren Trennlinien */
table, th, td {
    border: none;
}

/* leichte Struktur nur über Hover */
tr:hover {
    background: #f5f5f5;
}

/* optional: Header subtil hervorheben */
th {
    font-weight: bold;
    background: #fafafa;
}

.header-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.button-small {
    padding: 6px 10px;
    background: #eee;
    border-radius: 6px;
    text-decoration: none;
    color: black;
    font-size: 14px;
}

.daily-container {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.col {
    flex: 1;
    background: white;
    padding: 15px;
    border-radius: 10px;
    min-height: 300px;
}