#socialWidget {
    position: fixed;
    top: 1px;
    right: 9px;
    z-index: 9999;
    background: transparent;
}
#socialWidgetPanel {
    background: transparent;
    display: flex;
    flex-direction: row; /* poziomo */
    gap: 10px;
    align-items: center;
    padding: 0;
    box-shadow: none;
}

/* Ikony bez koloru przed najechaniem */
#socialWidgetPanel a img {
    width: 16px;
    height: 16px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* Kolor i pełna widoczność po najechaniu */
#socialWidgetPanel a:hover img {
    filter: grayscale(0%);
    opacity: 1;
}
