/* Ana Sayfa Stilleri */
body {
    font-family: sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
}

.blog-title {
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
}

.blog-header a {
    font-size: 4em;
    font-weight: bold;
    text-decoration: none;
    color: inherit;
}

.blog-header {
    text-align: center;
    margin-bottom: 20px;
}

.social-icons {
    text-align: center;
    padding-bottom: 20px;
}

.social-icons a {
    color: #000;
    margin: 0 15px;
    font-size: 1.8em;
    text-decoration: none;
}

/* Arama Çubuğu Stilleri */
.search-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    gap: 10px;
}

/* DÜZELTME: Bu bölüm orijinal kodunuzdaki gibi ayarlandı */
.search-input {
    padding: 12px 20px;
    font-size: 1.1em;
    border: 2px solid #000;
    border-radius: 0;
    background: #fff;
    width: 300px;
    max-width: 80%;
    outline: none;
    font-family: inherit;
}

.search-input:focus {
    border-color: #333;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.search-button {
    padding: 12px 16px;
    font-size: 1.1em;
    border: 2px solid #000;
    border-radius: 0;
    background: #000;
    color: #fff;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
}

.search-button:hover {
    background: #333;
    border-color: #333;
}

.search-button:active {
    transform: translateY(1px);
}

.divider {
    border: none;
    border-top: 2px solid #000;
    margin: 20px 0;
}

.post-link {
    display: block;
    text-decoration: none;
    color: inherit;
    margin-bottom: 30px;
}

.post-link h2 {
    font-size: 2em;
    margin-bottom: 5px;
}

.post-link p {
    font-size: 1.1em;
    margin: 0;
}

/* Arama Sonuç Bulunamadı Stilleri */
.no-results {
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0;
}

.no-results-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-results-content i {
    font-size: 4em;
    color: #ccc;
    margin-bottom: 20px;
}

.no-results-content h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #666;
}

.no-results-content p {
    color: #888;
    margin-bottom: 30px;
    line-height: 1.5;
}

.clear-search-btn {
    padding: 12px 24px;
    font-size: 1em;
    border: 2px solid #000;
    border-radius: 0;
    background: #fff;
    color: #000;
    cursor: pointer;
    outline: none;
    transition: all 0.2s ease;
    font-family: inherit;
}

.clear-search-btn:hover {
    background: #000;
    color: #fff;
}

.clear-search-btn:active {
    transform: translateY(1px);
}

/* Post Sayfası Stilleri */
.post-article {
    margin-top: 20px;
}

.post-title {
    font-size: 2.5em;
}

.post-meta {
    font-size: 0.9em;
    color: #555;
    margin-bottom: 30px;
}

.post-content {
    font-size: 1.1em;
    line-height: 1.7;
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-content pre {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    border-left: 4px solid #007acc;
}

.post-content pre code {
    background: none;
    padding: 0;
}

.post-content code {
    background: #f0f0f0;
    padding: 3px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.post-content blockquote {
    border-left: 4px solid #ddd;
    margin: 20px 0;
    padding: 10px 20px;
    background: #f9f9f9;
    font-style: italic;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.post-content th,
.post-content td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.post-content th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.post-content tr:nth-child(even) {
    background-color: #f9f9f9;
}

.post-content ul.task-list {
    list-style: none;
    padding-left: 0;
}

.post-content .task-list-item {
    margin: 5px 0;
}

.post-content .task-list-item input {
    margin-right: 8px;
}

.post-content hr {
    border: none;
    border-top: 2px solid #eee;
    margin: 30px 0;
}

.post-content del {
    color: #888;
}

.post-content a {
    color: #007acc;
    text-decoration: none;
}

.post-content a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 40px;
}

footer p {
    margin: 10px 0;
}

.rss-link {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.rss-link:hover {
    color: #ff6600;
    text-decoration: underline;
}

.rss-link i {
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2.5em;
    }
    
    .social-icons a {
        margin: 0 10px;
        font-size: 1.5em;
    }
    
    .search-container {
        flex-direction: column;
        gap: 15px;
    }
    
    /* DÜZELTME: Mobil uyumluluk için bu bölüm korundu */
    .search-input {
        width: 90%;
        max-width: none;
    }
    
    .search-button {
        width: 90%;
        max-width: 200px;
    }
    
    .post-link h2 {
        font-size: 1.5em;
    }
    
    .post-link p {
        font-size: 1em;
    }
    
    /* Mobil için sonuç bulunamadı */
    .no-results {
        padding: 40px 15px;
    }
    
    .no-results-content i {
        font-size: 3em;
    }
    
    .no-results-content h3 {
        font-size: 1.3em;
    }
    
    .clear-search-btn {
        width: 90%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 10px;
    }
    
    .blog-title {
        font-size: 2em;
    }
    
    .social-icons a {
        margin: 0 8px;
        font-size: 1.3em;
    }
    
    .search-input {
        padding: 10px 15px;
        font-size: 1em;
    }
    
    .search-button {
        padding: 10px 14px;
        font-size: 1em;
    }
}