/* Post Detail Sayfası CSS */
.initials-circle {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    text-transform: uppercase;
}

/* Dark mode için badge ve ikon renkleri */
[data-bs-theme="dark"] .badge.bg-light {
    background-color: #343a40 !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .badge.bg-secondary {
    background-color: #6c757d !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .badge.bg-primary {
    background-color: #0d6efd !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .badge.bg-warning {
    background-color: #ffc107 !important;
    color: #212529 !important;
}

[data-bs-theme="dark"] .badge.bg-info {
    background-color: #0dcaf0 !important;
    color: #212529 !important;
}

[data-bs-theme="dark"] .badge.bg-success {
    background-color: #198754 !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .badge.bg-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
}

[data-bs-theme="dark"] .badge .bi {
    color: #fff !important;
}

[data-bs-theme="dark"] .badge.bg-light .bi {
    color: #212529 !important;
} 