.social-widget {
    max-width: 500px;
    margin: 50px auto;
    text-align: center;
    padding: 15px;
}

.social-title {
    font-size: 24px;
    font-family: Arial, sans-serif;
    font-weight: normal;
    margin-bottom: 15px;
    color: #000;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 4px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
    background-color: white;
    position: relative;
}

.social-icon:hover {
    border-color: #333;
    background-color: #333;
}

.social-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 22px;
    height: 22px;
    fill: #666;
    transition: fill 0.2s ease;
}

.social-icon:hover svg {
    fill: #fff;
}

/* Facebook ikonu için özel ayar */
.social-icon:nth-child(1) svg {
    margin-left: -1px;
}

/* TikTok ikonu için özel ayar */
.social-icon:nth-child(2) svg {
    margin-left: 0;
}

/* YouTube ikonu için özel ayar */
.social-icon:nth-child(3) svg {
    margin-left: 0;
}

/* Instagram ikonu için özel ayar */
.social-icon:nth-child(4) svg {
    margin-left: 0;
}