/* Placerar Mejselfix-loggan automatiskt i slutet av varje inlägg */
.single-post .entry-content {
    position: relative;
    padding-bottom: 80px; /* Ger plats för loggan så den inte täcker text */
}

.single-post .entry-content::after {
    content: "";
    /* Din logga från Google Drive */
    background-image: url('https://drive.google.com/uc?export=view&id=1LvQVvfc3zT2ot3oh2cZbjVtYju_KC_q2');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 140px; /* Justera storleken på loggan här */
    height: 70px;
    opacity: 0.8; /* Gör den aningen transparent för en snygg finish */
    pointer-events: none;
}