/* Sosyal Medya İkonları */
.social-share {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.social-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: white;
    transition: transform 0.3s, box-shadow 0.3s;
    font-size: 18px;
}

.social-share a:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.social-share .twitter {
    background: #1DA1F2;
}

.social-share .facebook {
    background: #1877F2;
}

.social-share .linkedin {
    background: #0077B5;
}

.social-share .instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-share .bluesky {
    background: #00A8E8;
}

/* APA Atıf Stili */
.apa-atif {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 15px;
    margin: 20px 0;
    border-radius: 5px;
    font-style: italic;
    font-size: 14px;
    line-height: 1.6;
}

.apa-atif-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-style: normal;
}


