.social-float-container {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
}

.social-float {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    overflow: visible;
    transition: background-color 0.3s ease;
    background-color: #333; /* Default */
}

.social-float a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    text-decoration: none;
    position: relative;
}

.icon-box {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.text-box {
    position: absolute;
    top: 0;
    right: 45px;
    height: 45px;
    line-height: 45px;
    white-space: nowrap;
    padding: 0 15px;
    color: #fff;
    font-size: 14px;
    transform: translateX(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1;
}


.social-float:hover .text-box {
    transform: translateX(0);
    opacity: 1;
}
.social-float .icon-box i {
    color: #ffffff; /* her zaman beyaz başlasın */
    transition: color 0.3s ease;
}

.social-float:hover .icon-box i {
    color: #ffffff; /* hover olduğunda da beyaz kalsın */
}
