/* Blog Sayfası Stilleri */

/* Blog Header */
.blog-header {
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.blog-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Blog Content */
.blog-content {
    background: linear-gradient(135deg, #1a1c26 0%, var(--primary-color) 100%);
    min-height: 80vh;
}

/* Blog Filters */
.blog-filters {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.search-form .input-group {
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-radius: 8px;
    overflow: hidden;
}

.search-form .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.search-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.search-form .form-control:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 59, 59, 0.25);
    color: white;
}

.search-form .btn-outline-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.search-form .btn-outline-secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
}

.category-filter .form-select {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
}

.category-filter .form-select:focus {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(232, 59, 59, 0.25);
    color: white;
}

.category-filter .form-select option {
    background-color: #2d3748;
    color: white;
    padding: 0.5rem;
}

.category-filter .form-select option:hover,
.category-filter .form-select option:checked,
.category-filter .form-select option:focus {
    background-color: var(--accent-color);
    color: white;
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.blog-card-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.4;
}

.blog-card-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--accent-color);
}

.blog-card-meta {
    color: var(--dark-gray);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-category {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
}

.blog-date {
    color: var(--dark-gray);
    font-size: 0.8rem;
}

.blog-card-excerpt {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.blog-card-excerpt p {
    margin-bottom: 0;
}

.blog-card-excerpt p:empty {
    margin-bottom: 1rem;
}

.blog-card-excerpt p:last-child {
    margin-bottom: 0;
}

.blog-card-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: auto;
}

.blog-card-actions .btn {
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.blog-card-actions .btn-outline-accent {
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background: transparent;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-card-actions .btn-outline-accent:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(232, 59, 59, 0.3);
}

.blog-card-actions .btn-primary {
    background: linear-gradient(135deg, #007bff, #0056b3);
    border: none;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
}

.blog-card-actions .btn-primary:hover {
    background: linear-gradient(135deg, #0069d9, #004085);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Pagination */
.pagination .page-link {
    border: none;
    color: #1976d2;
    font-weight: 500;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: #1976d2;
    color: white;
    transform: translateY(-2px);
}

.pagination .page-item.active .page-link {
    background-color: #1976d2;
    border-color: #1976d2;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.sidebar-widget .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
    position: relative;
    padding-bottom: 0.5rem;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(45deg, #1976d2, #2196f3);
    border-radius: 2px;
}

/* Popular Posts */
.popular-post {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.popular-post:last-child {
    border-bottom: none;
}

.popular-post h6 a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.popular-post h6 a:hover {
    color: var(--accent-color);
}

.popular-post .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* Categories */
.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-list li:last-child {
    border-bottom: none;
}

.category-list a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.category-list a:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.category-count {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-left: 0.5rem;
}

/* Tags */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tag-link:hover {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Contact Widget */
.contact-widget {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
}

.contact-widget .widget-title {
    color: white;
}

.contact-widget .widget-title::after {
    background: rgba(255,255,255,0.3);
}

.contact-widget p {
    color: rgba(255,255,255,0.9);
}

.contact-widget .btn-primary {
    background: white;
    color: #1976d2;
    border: none;
    font-weight: 600;
}

.contact-widget .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
}

/* Blog Post Detail Styles */
.blog-post-content {
    background: linear-gradient(135deg, #1a1c26 0%, var(--primary-color) 100%);
    min-height: 100vh;
}

.blog-post {
    width: 100%;
}

.breadcrumb-section {
    background: linear-gradient(135deg, #1a1c26 0%, var(--primary-color) 100%);
    padding: 100px 0 20px;
}

.breadcrumb {
    background: none;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
    content: "/";
}

/* Post Header */
.post-header {
    text-align: center;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.meta-item a {
    color: var(--accent-color);
    text-decoration: none;
}

.meta-item a:hover {
    text-decoration: underline;
}

/* Post Content */
.post-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    font-size: 1.1rem;
    line-height: 1.8;
    color: white;
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    color: white;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.post-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 0.5rem;
}

.post-content h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.post-content p {
    margin-bottom: 0;
}

.post-content p:empty {
    margin-bottom: 1.5rem;
}

.post-content p + p {
    margin-top: 0;
}

.post-content p:last-child {
    margin-bottom: 0;
}

.post-content ul,
.post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
}

.post-content blockquote {
    background: rgba(255, 255, 255, 0.1);
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.post-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #ffeb3b;
}

.post-content pre {
    background: #2d3748;
    color: #e2e8f0;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

/* Featured Image */
.post-featured-image {
    margin-bottom: 2rem;
}

.post-featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Post Tags */
.post-tags {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.post-tags h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.post-tags .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Share Buttons */
.post-share {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    margin-bottom: 2rem;
}

.post-share h5 {
    color: white;
    margin-bottom: 1rem;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.share-buttons .btn {
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-facebook {
    background: #1877f2;
    color: white;
}

.btn-facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
    color: white;
}

.btn-twitter {
    background: #1da1f2;
    color: white;
}

.btn-twitter:hover {
    background: #1991db;
    transform: translateY(-2px);
    color: white;
}

.btn-linkedin {
    background: #0077b5;
    color: white;
}

.btn-linkedin:hover {
    background: #006ba1;
    transform: translateY(-2px);
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #22c55e;
    transform: translateY(-2px);
    color: white;
}

/* Related Posts */
.related-posts {
    margin-top: 3rem;
}

.related-posts h3 {
    color: white;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.related-post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.related-post-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.related-post-card .card-content {
    padding: 1rem;
}

.related-post-card h6 a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
}

.related-post-card h6 a:hover {
    color: #1976d2;
}

/* Table of Contents */
#table-of-contents ul {
    list-style: none;
    padding: 0;
}

#table-of-contents li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#table-of-contents li:last-child {
    border-bottom: none;
}

#table-of-contents a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

#table-of-contents a:hover {
    color: var(--accent-color);
}

.toc-h3 {
    padding-left: 1rem;
    font-size: 0.9rem;
}

/* Latest Posts in Sidebar */
.latest-post {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.latest-post:last-child {
    border-bottom: none;
}

.latest-post h6 a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.latest-post h6 a:hover {
    color: var(--accent-color);
}

.latest-post .text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* No Posts */
.no-posts {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
}

.no-posts h4 {
    color: white;
}

.no-posts .text-muted {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Admin Blog Ekleme Kartı */
.add-new-card {
    background: linear-gradient(135deg, rgba(232, 59, 59, 0.1) 0%, rgba(232, 59, 59, 0.05) 100%);
    border: 2px dashed rgba(232, 59, 59, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.add-new-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(232, 59, 59, 0.1), transparent);
    transition: left 0.5s ease;
}

.add-new-card:hover::before {
    left: 100%;
}

.add-new-card:hover {
    border-color: rgba(232, 59, 59, 0.8);
    background: linear-gradient(135deg, rgba(232, 59, 59, 0.15) 0%, rgba(232, 59, 59, 0.08) 100%);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(232, 59, 59, 0.2);
}

.add-new-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.add-new-icon {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

.add-new-content h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.add-new-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Modal Stilleri */
.modal-content.bg-dark {
    background: linear-gradient(135deg, #1a1c26 0%, var(--primary-color) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header.border-secondary {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-footer.border-secondary {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.modal-title {
    color: white !important;
    font-weight: 600;
}

.modal-title .fas {
    color: var(--accent-color);
}

/* Form Stilleri */
.form-label {
    color: white !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-label .fas {
    color: var(--accent-color);
}

.form-control.bg-dark {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.form-control.bg-dark:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(232, 59, 59, 0.25) !important;
    color: white !important;
}

.form-control.bg-dark::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
}

.form-select.bg-dark {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m1 6 7 7 7-7'/%3e%3c/svg%3e") !important;
}

.form-select.bg-dark:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(232, 59, 59, 0.25) !important;
    color: white !important;
}

.form-select.bg-dark option {
    background-color: #2d3748 !important;
    color: white !important;
}

.form-text.text-muted {
    color: rgba(255, 255, 255, 0.6) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

/* Input Group Stilleri */
.input-group .form-control.bg-dark {
    border-right: none !important;
}

.input-group .btn {
    border-left: none !important;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Textarea Stilleri */
textarea.form-control.bg-dark {
    resize: vertical;
    min-height: 120px;
}

/* File Input Stilleri */
.form-control.bg-dark[type="file"] {
    padding: 0.5rem;
}

.form-control.bg-dark[type="file"]::-webkit-file-upload-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    margin-right: 1rem;
    cursor: pointer;
}

/* Modal Butonları */
.modal-footer .btn {
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.modal-footer .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.modal-footer .btn-primary:hover {
    background-color: #d32f2f;
    border-color: #d32f2f;
    transform: translateY(-2px);
}

.modal-footer .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.modal-footer .btn-secondary:hover {
    background-color: #5a6268;
    border-color: #545b62;
}

/* HR Stilleri */
hr.border-secondary {
    border-color: rgba(255, 255, 255, 0.1) !important;
    margin: 2rem 0;
}

/* Alert Stilleri */
.alert.position-fixed {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.2) !important;
    color: #28a745 !important;
    border-color: rgba(40, 167, 69, 0.3) !important;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.2) !important;
    color: #dc3545 !important;
    border-color: rgba(220, 53, 69, 0.3) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-title {
        font-size: 2rem;
    }
    
    .blog-subtitle {
        font-size: 1rem;
    }
    
    .blog-filters {
        padding: 1rem;
    }
    
    .blog-filters .row > div {
        margin-bottom: 1rem;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .post-content {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .share-buttons .btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .blog-sidebar {
        position: static;
        margin-top: 3rem;
    }
    
    .add-new-card {
        min-height: 200px;
    }
    
    .add-new-content h4 {
        font-size: 1.2rem;
    }
    
    .add-new-content p {
        font-size: 0.9rem;
    }
    
    .modal-dialog.modal-lg {
        max-width: 95%;
        margin: 1rem auto;
    }
}

/* CKEditor Tema Stilleri */
.ck.ck-editor {
    border-radius: 8px;
    overflow: hidden;
}

.ck.ck-editor__main > .ck-editor__editable {
    background-color: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    min-height: 300px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
    padding: 20px !important;
    border-radius: 0 0 8px 8px !important;
}

.ck.ck-editor__editable:focus {
    background-color: rgba(255, 255, 255, 0.15) !important;
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 0.2rem rgba(232, 59, 59, 0.25) !important;
}

.ck.ck-toolbar {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-bottom: none !important;
    border-radius: 8px 8px 0 0 !important;
    padding: 8px !important;
}

.ck.ck-button {
    color: white !important;
    border-radius: 6px !important;
    margin: 2px !important;
    transition: all 0.3s ease !important;
}

.ck.ck-button:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-1px) !important;
}

.ck.ck-button.ck-on {
    background-color: var(--accent-color) !important;
    color: white !important;
    box-shadow: 0 2px 4px rgba(232, 59, 59, 0.3) !important;
}

.ck.ck-button .ck-button__label {
    color: white !important;
}

.ck.ck-button .ck-icon {
    color: white !important;
}

.ck.ck-dropdown__panel {
    background-color: #2d3748 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}

.ck.ck-list__item {
    color: white !important;
    padding: 8px 12px !important;
}

.ck.ck-list__item:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

.ck.ck-list__item.ck-on {
    background-color: var(--accent-color) !important;
}

.ck.ck-heading-dropdown .ck-dropdown__button .ck-button__label {
    color: white !important;
}

.ck-content h1 {
    color: white !important;
    font-size: 2.5em !important;
    margin: 1em 0 0.5em !important;
}

.ck-content h2 {
    color: var(--accent-color) !important;
    font-size: 2em !important;
    margin: 1em 0 0.5em !important;
}

.ck-content h3 {
    color: #4FC3F7 !important;
    font-size: 1.5em !important;
    margin: 1em 0 0.5em !important;
}

.ck-content p {
    color: white !important;
    margin: 0 !important;
}

.ck-content p:empty {
    margin: 1em 0 !important;
}

.ck-content p + p {
    margin-top: 0 !important;
}

.ck-content p:last-child {
    margin-bottom: 0 !important;
}

/* Satır atlama için br etiketleri */
.ck-content br {
    margin: 0 !important;
    line-height: 1 !important;
}

.post-content br {
    margin: 0;
    line-height: 1;
}

.ck-content blockquote {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-left: 4px solid var(--accent-color) !important;
    padding: 1em !important;
    margin: 1em 0 !important;
    border-radius: 0 8px 8px 0 !important;
    font-style: italic !important;
}

.ck-content ul, .ck-content ol {
    color: white !important;
    margin: 1em 0 !important;
    padding-left: 2em !important;
}

.ck-content li {
    color: white !important;
    margin: 0.5em 0 !important;
}

.ck-content table {
    border-collapse: collapse !important;
    margin: 1em 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.ck-content table td, .ck-content table th {
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 8px 12px !important;
    color: white !important;
}

.ck-content table th {
    background-color: rgba(255, 255, 255, 0.1) !important;
    font-weight: bold !important;
}

.ck-content a {
    color: #4FC3F7 !important;
    text-decoration: underline !important;
}

.ck-content a:hover {
    color: var(--accent-color) !important;
}

.ck.ck-toolbar__separator {
    background-color: rgba(255, 255, 255, 0.3) !important;
}

.ck.ck-tooltip {
    background-color: #2d3748 !important;
    color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 6px !important;
}

.ck.ck-tooltip__text {
    color: white !important;
}

/* CKEditor Responsive */
@media (max-width: 768px) {
    .ck.ck-toolbar {
        flex-wrap: wrap !important;
        padding: 6px !important;
    }
    
    .ck.ck-button {
        margin: 1px !important;
        padding: 6px !important;
    }
    
    .ck.ck-editor__main > .ck-editor__editable {
        min-height: 200px !important;
        padding: 15px !important;
        font-size: 14px !important;
    }
}