/**
*
* -----------------------------------------------------------------------------
* Template : Haber Alanya
* Author : M.Ceylan
* Instagram : @mceylanofficial
* -----------------------------------------------------------------------------
*
**/
    .comment-action.like.active {
        color: #007bff !important;
    }
    .comment-action.dislike.active {
        color: #dc3545 !important; 
    }
    .alert {
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    .alert-success {
        background: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
    }
    .alert-danger {
        background: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
    }
 
    body {
        background-color: #f8f9fa;
    }
    
    .news-detail-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 10px;
        display: flex;
        gap: 10px;
        background-color: white;
        box-shadow: 0 2px 15px rgba(0,0,0,0.05);
        border-radius: 10px;
        margin-top: 20px;
        margin-bottom: 30px;
    }
    
    .news-detail-main {
        flex: 0 0 70%;
    }
    
    .news-detail-sidebar {
        flex: 1;
    }
    
    .news-header {
        margin-bottom: 30px;
    }
    
    .news-category {
        display: inline-block;
        background: linear-gradient(135deg, #e63946, #c1121f);
        color: white;
        padding: 6px 18px;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        box-shadow: 0 3px 10px rgba(230, 57, 70, 0.2);
    }
    
    .news-title {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.3;
        margin-bottom: 15px;
        color: #1a1a1a;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .news-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        margin-bottom: 20px;
        color: #6c757d;
        font-size: 0.9rem;
        flex-wrap: wrap;
    }
    
    .news-meta i {
        margin-right: 5px;
        color: #e63946;
    }
    
    .news-image {
        width: 100%;
        height: 500px;
        border-radius: 12px;
        overflow: hidden;
        margin-top: 25px;
        margin-bottom: 25px;
        position: relative;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .news-image:hover img {
        transform: scale(1.03);
    }
    
    .image-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0,0,0,0.8));
        color: white;
        padding: 15px 20px;
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .image-credit {
        position: absolute;
        bottom: 50px;
        right: 15px;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 3px 10px;
        font-size: 0.8rem;
        border-radius: 3px;
    }
    
    .news-content {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 30px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    .news-content p {
        margin-bottom: 25px;
    }
    
    .news-content img {
        max-width: 100%;
        height: auto;
        border-radius: 10px;
        margin: 25px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .news-content blockquote {
        border-left: 4px solid #e63946;
        padding: 20px;
        margin: 30px 0;
        font-style: italic;
        color: #555;
        background: #f9f9f9;
        border-radius: 0 8px 8px 0;
        position: relative;
    }
    
    .news-content blockquote:before {
        content: '\201C';
        font-size: 4rem;
        color: #e63946;
        opacity: 0.2;
        position: absolute;
        left: 10px;
        top: -10px;
        font-family: Georgia, serif;
    }
    
    .highlight-box {
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border-radius: 10px;
        padding: 25px;
        margin: 30px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }
    
    .quote-author {
        display: flex;
        align-items: center;
        margin-top: 15px;
    }
    
    .quote-author img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        margin-right: 15px;
        border: 3px solid #e63946;
    }
    
    .quote-author cite {
        font-weight: 600;
        font-style: normal;
        color: #333;
        display: block;
    }
    
    .quote-author span {
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    .news-gallery {
        margin: 30px 0;
    }
    
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-item {
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: transform 0.3s;
    }
    
    .gallery-item:hover {
        transform: translateY(-5px);
    }
    
    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .gallery-caption {
        text-align: center;
        margin-top: 10px;
        font-size: 0.9rem;
        color: #6c757d;
    }
    
    .match-stats {
        background: #f8f9fa;
        border-radius: 10px;
        padding: 20px;
        margin: 30px 0;
    }
    
    .stats-title {
        margin-bottom: 20px;
        color: #333;
        font-size: 1.3rem;
        position: relative;
        padding-bottom: 10px;
    }
    
    .stats-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: #e63946;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-item {
        margin-bottom: 15px;
    }
    
    .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: #e63946;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 8px;
    }
    
    .stat-bar {
        height: 6px;
        background: #e9ecef;
        border-radius: 3px;
        overflow: hidden;
    }
    
    .stat-progress {
        height: 100%;
        background: linear-gradient(90deg, #e63946, #c1121f);
        border-radius: 3px;
    }
    
    .content-footer {
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid #eee;
    }
    
    .news-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 30px;
        align-items: center;
    }
    
    .news-tags span {
        font-weight: 600;
        color: #333;
    }
    
    .news-tag {
        background: #f1f1f1;
        color: #333;
        padding: 8px 18px;
        border-radius: 25px;
        font-size: 0.85rem;
        transition: all 0.3s;
        text-decoration: none;
    }
    
    .news-tag:hover {
        background: linear-gradient(135deg, #e63946, #c1121f);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
    }
    
    .social-share {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }
    
    .social-share span {
        font-weight: 600;
        color: #333;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        transition: all 0.3s;
        text-decoration: none;
    }
    
    .social-icon:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .twitter {
        background: #1DA1F2;
        color: #fff;
    }
    
    .facebook {
        background: #3b5998;
        color: #fff;
    }
    
    .linkedin {
        background: #0077B5;
        color: #fff;
    }
    
    .whatsapp {
        background: #25D366;
        color: #fff;
    }
    
    .link {
        background: #6c757d;
        color: #fff;
    }
    
    .news-author {
        display: flex;
        align-items: center;
        gap: 30px;
        padding: 30px;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border-radius: 12px;
        margin-bottom: 40px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }
    
    .author-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #e63946;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .author-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info h4 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        color: #333;
    }
    
    .author-info p {
        color: #6c757d;
        font-size: 0.95rem;
        margin-bottom: 12px;
        line-height: 1.5;
    }
    
    .author-social {
        display: flex;
        gap: 15px;
    }
    
    .author-social-link {
        color: #6c757d;
        transition: color 0.3s;
        font-size: 1.1rem;
    }
    
    .author-social-link:hover {
        color: #e63946;
    }
    
    .news-navigation {
        display: flex;
        justify-content: space-between;
        margin-bottom: 40px;
        gap: 20px;
    }
    
    .nav-button {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 15px 25px;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border-radius: 10px;
        color: #333;
        text-decoration: none;
        transition: all 0.3s;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        flex: 1;
    }
    
    .nav-button:hover {
        background: linear-gradient(135deg, #e63946, #c1121f);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(230, 57, 70, 0.3);
    }
    
    .nav-button:hover .nav-icon {
        color: white;
    }
    
    .nav-icon {
        font-size: 1.2rem;
        color: #e63946;
        transition: color 0.3s;
    }
    
    .nav-button-text {
        flex: 1;
    }
    
    .nav-button-text span {
        display: block;
        font-size: 0.9rem;
        color: #6c757d;
        margin-bottom: 5px;
    }
    
    .nav-button:hover .nav-button-text span {
        color: rgba(255,255,255,0.8);
    }
    
    .nav-button-text h3 {
        font-size: 1.1rem;
        font-weight: 600;
        line-height: 1.4;
    }
    
    .related-news {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
        position: relative;
        color: #333;
    }
    
    .section-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #e63946, #c1121f);
        border-radius: 2px;
    }
    
    .related-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .related-item {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s;
        border: 1px solid #eee;
    }
    
    .related-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .related-item img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }
    
    .related-content {
        padding: 20px;
    }
    
    .related-content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
        line-height: 1.4;
        color: #333;
    }
    
    .related-meta {
        font-size: 0.85rem;
        color: #6c757d;
        display: flex;
        justify-content: space-between;
    }
    
    .related-meta i {
        margin-right: 5px;
    }
    
    .related-category {
        position: absolute;
        top: 15px;
        left: 15px;
        background: linear-gradient(135deg, #e63946, #c1121f);
        color: white;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
    }
    
    .sidebar-widget {
        background: white;
        border-radius: 12px;
        padding: 25px;
        margin-bottom: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }
    
    .widget-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
        position: relative;
        color: #333;
    }
    
    .widget-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: linear-gradient(90deg, #e63946, #c1121f);
    }
    
    .popular-news {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .popular-item {
        display: flex;
        gap: 15px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
        transition: all 0.3s;
    }
    
    .popular-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .popular-item:hover {
        transform: translateX(5px);
    }
    
    .popular-img {
        flex: 0 0 80px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    }
    
    .popular-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }
    
    .popular-item:hover .popular-img img {
        transform: scale(1.1);
    }
    
    .popular-content h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
        line-height: 1.4;
        color: #333;
    }
    
    .popular-meta {
        font-size: 0.8rem;
        color: #6c757d;
        display: flex;
        gap: 15px;
    }
    
    .sidebar-banner {
        margin-bottom: 30px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .sidebar-banner img {
        width: 100%;
        height: auto;
        transition: transform 0.5s;
    }
    
    .sidebar-banner:hover img {
        transform: scale(1.03);
    }
    
    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .tag-cloud a {
        background: #f1f1f1;
        color: #333;
        padding: 8px 18px;
        border-radius: 25px;
        font-size: 0.85rem;
        transition: all 0.3s;
        text-decoration: none;
    }
    
    .tag-cloud a:hover {
        background: linear-gradient(135deg, #e63946, #c1121f);
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 3px 10px rgba(230, 57, 70, 0.3);
    }
    
    .comments-section {
        margin-top: 50px;
        background: white;
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }
    
    .comments-title {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
        position: relative;
        color: #333;
    }
    
    .comments-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #e63946, #c1121f);
        border-radius: 2px;
    }
    
    .comment-count {
        color: #e63946;
    }
    
    .comment-list {
        margin-bottom: 30px;
    }
    
    .comment-item {
        display: flex;
        gap: 25px;
        padding: 25px;
        background: #f8f9fa;
        border-radius: 10px;
        margin-bottom: 25px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }
    
    .comment-avatar {
        flex: 0 0 70px;
        height: 70px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #e63946;
    }
    
    .comment-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .comment-content {
        flex: 1;
    }
    
    .comment-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .comment-author {
        font-weight: 600;
        color: #333;
        font-size: 1.1rem;
    }
    
    .verified-badge {
        background: #e63946;
        color: white;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        margin-left: 8px;
        display: inline-block;
    }
    
    .comment-date {
        color: #6c757d;
        font-size: 0.85rem;
    }
    
    .comment-text {
        margin-bottom: 15px;
        line-height: 1.7;
        color: #555;
    }
    
    .comment-actions {
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .comment-action {
        background: transparent;
        border: none;
        color: #6c757d;
        font-size: 0.9rem;
        cursor: pointer;
        transition: all 0.3s;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .comment-action:hover {
        color: #e63946;
    }
    
    .comment-action.like:hover {
        color: #28a745;
    }
    
    .comment-action.dislike:hover {
        color: #dc3545;
    }
    
    .comment-form {
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }
    
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
        color: #333;
        position: relative;
        padding-bottom: 10px;
    }
    
    .form-title:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #e63946, #c1121f);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #333;
    }
    
    .form-control {
        width: 100%;
        padding: 14px 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.3s;
        background: #f8f9fa;
    }
    
    .form-control:focus {
        border-color: #e63946;
        outline: none;
        box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.2);
        background: white;
    }
    
    textarea.form-control {
        min-height: 180px;
        resize: vertical;
    }
    
    .form-row {
        display: flex;
        gap: 20px;
    }
    
    .form-row .form-group {
        flex: 1;
    }
    
    .submit-btn {
        background: linear-gradient(135deg, #e63946, #c1121f);
        color: white;
        border: none;
        padding: 14px 30px;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        box-shadow: 0 5px 15px rgba(230, 57, 70, 0.3);
    }
    
    .submit-btn:hover {
        background: linear-gradient(135deg, #c1121f, #a50e1a);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(230, 57, 70, 0.4);
    }
    
    @media (max-width: 1200px) {
        .news-detail-container {
            padding: 15px;
            gap: 20px;
        }
        
        .news-title {
            font-size: 2.2rem;
        }
        
        .news-image {
            height: 450px;
        }
        
        .stats-grid {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 992px) {
        .news-detail-container {
            flex-direction: column;
        }
        
        .news-detail-main {
            margin-bottom: 30px;
        }
        
        .related-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .form-row {
            flex-direction: column;
            gap: 0;
        }
    }
    
    @media (max-width: 768px) {
        .news-title {
            font-size: 1.8rem;
        }
        
        .news-image {
            height: 350px;
        }
        
        .news-navigation {
            flex-direction: column;
            gap: 15px;
        }
        
        .related-grid {
            grid-template-columns: 1fr;
        }
        
        .gallery-grid {
            grid-template-columns: 1fr;
        }
        
        .comment-item {
            flex-direction: column;
        }
    }
    
    @media (max-width: 576px) {
        .news-title {
            font-size: 1.6rem;
        }
        
        .news-image {
            height: 250px;
        }
        
        .news-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        
        .news-author {
            flex-direction: column;
            text-align: center;
            gap: 20px;
        }
        
        .author-info {
            text-align: center;
        }
        
        .author-social {
            justify-content: center;
        }
        
        .section-title {
            font-size: 1.5rem;
        }
    }
	
		.bugun {
     display: inline-block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #6e48aa, #9d50bb);
    padding: 8px 15px;
    border-radius: 20px;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.
}

 .pharmacy-container {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Eşit genişlik: sol ve sağ yarı yarıya */
        gap: 20px;
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
        padding: 20px;
        margin: 0;
    }

    .pharmacy-section {
        margin-bottom: 20px;
    }

    .pharmacy-section h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        color: #333;
        display: flex;
        align-items: center;
        border-bottom: 2px solid #e63946;
        padding-bottom: 5px;
    }

    .pharmacy-section h2 i {
        margin-right: 8px;
        color: #e63946;
    }

    .pharmacy-section h2 .date {
        font-size: 0.9rem;
        color: #6c757d;
        margin-left: 8px;
    }

    .pharmacy-list {
        padding: 10px;
        border: 1px solid #eee;
        border-radius: 5px;
        background: #fff;
    }

    .pharmacy-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        transition: background 0.3s;
    }

    .pharmacy-item:last-child {
        border-bottom: none;
    }

    .pharmacy-item:hover {
        background: #f1f1f1;
    }

    .pharmacy-info p {
        margin: 2px 0;
        line-height: 1.4;
    }

    .pharmacy-map a {
        text-decoration: none;
        color: #fff;
        background: #e63946;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 0.85rem;
        transition: background 0.3s;
    }

    .pharmacy-map a:hover {
        background: #d62828;
    }

    /* Popup stilleri (orijinalden aynen) */
    .popup {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        justify-content: center;
        align-items: center;
    }

    .popup-content {
        background-color: #fff;
        padding: 20px;
        border-radius: 10px;
        width: 90%;
        max-width: 800px;
        position: relative;
    }

    .popup-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
        cursor: pointer;
        color: #333;
    }

    .popup-close:hover {
        color: #e63946;
    }