/* Genel Stiller */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

/* Buton Stili */
.floating-icons a {
    display: flex;
    align-items: center;
    justify-content: start;
    width: auto;
    height: 20px;
    background: white;
    border-radius: 30px;
    padding: 10px;
    gap: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

/* İkon Görünümü */
.floating-icons img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

/* Yazı Stili */
.floating-icons .icon-text {
    font-size: 14px;
    font-family: Arial, sans-serif;
    color: #333;
    white-space: nowrap;
}

/* Hover Efekti (Masaüstü için) */
.floating-icons a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* Mobil Uyumluluk */
@media screen and (max-width: 768px) {
    .floating-icons {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }

    .floating-icons a {
        height: 50px;
        padding: 8px;
    }

    .floating-icons img {
        width: 40px;
        height: 40px;
    }

    .floating-icons .icon-text {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .floating-icons a {
        height: 45px;
        padding: 6px;
    }

    .floating-icons img {
        width: 35px;
        height: 35px;
    }

    .floating-icons .icon-text {
        font-size: 11px;
    }
}