/* Genel İçerik Stilleri */
.content-single {
    font-family: inherit;
    line-height: 1.6;
    color: #333;
}

/* Başlık Stilleri */
.content-single h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 2rem 0 1.5rem;
    color: #1a1a1a;
}

.content-single h2 {
    font-size: 2rem;
    font-weight: 600;
    margin: 2rem 0 1.2rem;
    color: #1a1a1a;
}

.content-single h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin: 1.8rem 0 1rem;
    color: #1a1a1a;
}

.content-single h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

/* Paragraf Stilleri */
.content-single p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1rem 0;
    color: #333;
}

/* Liste Stilleri */
.content-single ul,
.content-single ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.content-single li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0.5rem 0;
}

/* Link Stilleri */
.content-single a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.content-single a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Tablo Stilleri */
.content-single table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.content-single table th,
.content-single table td {
    padding: 1rem;
    border: 1px solid #dee2e6;
    text-align: left;
}

.content-single table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a1a1a;
}

.content-single table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.content-single table tr:hover {
    background-color: #f2f2f2;
}

/* Görsel Stilleri */
.content-single img {
    max-width: 100%;
    height: auto;
    margin: 1.5rem 0;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .content-single h1 { font-size: 2rem; }
    .content-single h2 { font-size: 1.75rem; }
    .content-single h3 { font-size: 1.5rem; }
    .content-single h4 { font-size: 1.25rem; }
    .content-single p { font-size: 1rem; }
    
    .content-single table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .content-single img {
        margin: 1rem 0;
    }
}

/* Özel Boşluk Sınıfları */
.content-single .mb-2 { margin-bottom: 0.5rem; }
.content-single .mb-3 { margin-bottom: 1rem; }
.content-single .mb-4 { margin-bottom: 1.5rem; }
.content-single .mb-5 { margin-bottom: 2rem; }

/* Metin Hizalama */
.content-single .text-left { text-align: left; }
.content-single .text-center { text-align: center; }
.content-single .text-right { text-align: right; }

/* Özel Renk Sınıfları */
.content-single .text-primary { color: #007bff; }
.content-single .text-secondary { color: #6c757d; }
.content-single .text-success { color: #28a745; }
.content-single .text-danger { color: #dc3545; } 