/* Gri Kalemler Paylaşım Butonları Stilleri */
.gkp-paylas-konteyner {
    border-top: 1px solid #e0e0e0; /* Yazı ile araya ince bir çizgi */
    padding-top: 20px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.gkp-paylas-baslik {
    font-size: 16px;
    font-weight: bold;
    color: #333; /* Temanızın ana metin rengine göre değiştirilebilir */
    margin-bottom: 15px;
    text-align: left;
}

.gkp-paylas-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Butonları yan yana dizer */
    gap: 10px; /* Butonlar arası boşluk */
}

.gkp-paylas-listesi li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ccc; /* Buton çerçevesi rengi */
    border-radius: 50%; /* Butonları yuvarlak yapar */
    transition: all 0.3s ease;
}

.gkp-paylas-listesi li a svg {
    width: 20px;
    height: 20px;
    fill: #555; /* İkon rengi. Temanıza göre değiştirin. */
    transition: fill 0.3s ease;
}

/* Hover Efektleri */
.gkp-paylas-listesi li a:hover {
    border-color: #333; /* Hover anında çerçeve rengi */
    background-color: #f5f5f5; /* Hover anında arkaplan rengi */
}

.gkp-paylas-listesi li a:hover svg {
    fill: #000; /* Hover anında ikon rengi */
}