.csi-social-icons {
    position: fixed;
    top: 50%;
    right: 20px; /* Przesunięcie do prawej strony */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.csi-social-icons img {
    width: 40px;
    height: 40px;
    transition: transform 0.2s ease-in-out;
}

.csi-social-icons img:hover {
    transform: scale(1.1);
}
