/* ===== Allgemein ===== */
body {
    margin: 0;
    font-family: "Source Sans 3", sans-serif;
    background-color: #fafafa;
    color: #222;
}

/* ===== Header ===== */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 10;
}

#logo {
    height: 32px;
}

#user-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #ddd;
}

/* ===== Post Container ===== */
.container {
    max-width: 500px;
    margin: 32px auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    overflow: hidden;
}

/* ===== Header im Post ===== */
.container-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
}

.profile-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-right: 12px;
    border: 2px solid #f1f1f1;
}

.user-data h1 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.user-data h2 {
    font-size: 13px;
    color: #666;
    margin: 2px 0 0;
}

/* ===== Post Bild ===== */
.post-img {
    width: 100%;
    display: block;
}

/* ===== Icons und Likes ===== */
.post-section {
    padding: 8px 16px;
}

.icons {
    display: flex;
    gap: 12px;
    margin-bottom: 6px;
}

.icon {
    width: 24px;
    cursor: pointer;
    transition: transform 0.2s;
}

.icon:hover {
    transform: scale(1.2);
}

.likes {
    font-weight: 600;
    margin: 0;
}

/* ===== Kommentare ===== */
.comment-section {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px 12px;
}

.username {
    font-weight: 600;
}

.comment {
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 400px) {
    .container {
        margin: 16px;
    }
}
