.eit-sticker-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.eit-sticker-text {
    background-color: var(--eit-sticker-bg, #ff0000);
    color: var(--eit-sticker-text, #ffffff);
    height: var(--eit-sticker-height, 24px);
    line-height: var(--eit-sticker-height, 24px);
    font-size: var(--eit-sticker-font-size, 12px);
    border-radius: var(--eit-sticker-radius, 4px);
    padding: 0 10px;
    font-weight: bold;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.eit-sticker-image {
    width: var(--eit-sticker-img-width, 80px);
    height: var(--eit-sticker-img-height, 80px);
    object-fit: contain;
    display: block;
}

@media screen and (max-width: 991px) {
    .eit-sticker-container {
        top: 5px;
        left: 5px;
    }

    .eit-sticker-text {
        height: calc(var(--eit-sticker-height) * 0.85);
        line-height: calc(var(--eit-sticker-height) * 0.85);
        font-size: calc(var(--eit-sticker-font-size) * 0.85);
        padding: 0 8px;
    }

    .eit-sticker-image {
        width: calc(var(--eit-sticker-img-width) * 0.75);
        height: calc(var(--eit-sticker-img-height) * 0.75);
    }
}

@media screen and (max-width: 575px) {
    .eit-sticker-container {
        top: 5px;
        right: auto;
        left: 0;
    }
    
    .eit-sticker-text {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        box-shadow: 2px 2px 5px rgba(0,0,0,0.15);
        font-size: max(10px, calc(var(--eit-sticker-font-size) * 0.7));
        height: auto;
        padding: 3px 6px;
        line-height: normal;
    }

    .eit-sticker-image {
        width: calc(var(--eit-sticker-img-width) * 0.5);
        height: auto;
        max-height: calc(var(--eit-sticker-img-height) * 0.6);
    }
}