.social-media-bar {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.social-media-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 20;
    pointer-events: auto;
}

.social-media-icon i {
    color: white;
    font-size: 24px;
    transition: transform 0.3s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.social-media-icon:hover {
    background-color: transparent;
    transform: translateY(-3px);
}

.social-media-icon:hover i {
    transform: scale(1.1);
}
