#facebook-widget-container {
    position: fixed;
    top: 48%;
    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);
}

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

#facebook-widget-tab {
    position: absolute;
    right: -32px;           /* języczek wystaje na ekran */
    left: auto;
    top: 50%;
    width: 32px;
    height: 130px;
    background-color: #3b5998;
    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;

    /* po lewej stronie zwykle czytelniej bez obrotu */
    transform: translateY(-50%);
    /* jeśli wolisz identyczny kierunek jak wcześniej, zamień na:
       transform: translateY(-50%) rotate(180deg);
    */
}

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