#allegro-widget-container {
    position: fixed;
    top: 70%;
    left: -260px; /* schowany po lewej */
    right: auto;
    width: 260px;
    height: 130px;
    transition: left 0.4s ease;
    z-index: 9999;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);

    background-image: url('/img/allegro.jpg');
    background-size: cover;           
    background-position: 50% 40%;     
    background-repeat: no-repeat;
}

#allegro-widget-container.open {
    left: 0; /* pokazany po lewej */
}

#allegro-widget-tab {
    position: absolute;
    right: -32px;            /* języczek wystaje na ekran */
    left: auto;
    top: 50%;
    width: 32px;
    height: 130px;
    background-color: #FF5A00;
    color: #fff;
    font-weight: bold;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    cursor: pointer;

    /* pionowy napis */
    writing-mode: vertical-rl;
    text-orientation: mixed;

    /* czytelny kierunek na lewej stronie */
    transform: translateY(-50%);
    /* jeśli chcesz jak wcześniej (odwrócony) to daj:
       transform: translateY(-50%) rotate(180deg);
    */
}

#allegro-widget-frame {
    width: 100%;
    height: 100%;
    border: none;
}
