
/* Öffentliches Tagebuch - Style (schlicht & modern) */

.oeffentliches-tagebuch-list {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    color: #222;
}

.tagebuch-entry {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    padding: 18px;
    margin-bottom: 16px;
    box-shadow: 0 2px 6px rgba(20,20,20,0.03);
}

.tagebuch-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 8px;
}

.tagebuch-date {
    font-weight: 600;
    font-size: 0.95rem;
    color: #555;
    background: #f7f7f7;
    padding: 6px 10px;
    border-radius: 6px;
    display: inline-block;
}

.tagebuch-title {
    margin: 0;
    font-size: 1.1rem;
    color: #111;
}

.tagebuch-content {
    margin-top: 8px;
    line-height: 1.6;
    font-size: 1rem;
    color: #333;
}

.tagebuch-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
}

.tagebuch-none {
    text-align: center;
    color: #666;
    padding: 16px;
}
