.share-btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 10px 0px;
    font-style: italic;
}

.share-btn {
    display: inline-block;
    margin-right: 1rem;
    cursor: pointer;
    outline: none;
}

.share-btn:last-child {
    margin-right: 0;
}

.share-btn img {
    width: 28px;
    height: 28px;
    transition: opacity 0.3s ease;
}

.share-btn:focus {
    outline: none;
}

.share-btn:focus img {
    outline: 2px solid blue;
    outline-offset: 2px;
}

.share-btn:hover img {
    opacity: 0.8;
}

.kommentare-btn {
    background-color: #e0e0e0;
    color: black;
    padding: 10px 15px;
    font-size: 14px;
    text-align: center;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 18px;
    margin-top: -5px;
}

.kommentare-btn:hover {
    background-color: #d0d0d0;
    text-decoration: none;
}

.kommentare-btn:focus {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
}
