/*
Theme Name: LiveGo IPTV Blog Theme
Description: A custom WordPress theme for LiveGo IPTV blog with matching design from the main website. Features dark background, blog cards, and responsive layout.
Version: 1.0
Author: LiveGo IPTV
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0F172A;
    min-height: 100vh;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.site-header {
    background: #1A252F;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.site-logo img {
    height: 48px;
    width: auto;
}

/* Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu {
    display: flex;
    list-style: none !important;
    gap: 2rem;
    margin: 0 !important;
    padding: 0 !important;
}

.nav-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override any WordPress default list styles in navigation */
.site-header ul,
.site-header ul li,
.site-header ol,
.site-header ol li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* More aggressive dropdown menu bullet point removal */
.dropdown-menu,
.dropdown-menu ul,
.dropdown-menu ol {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
}

.dropdown-menu li,
.dropdown-menu ul li,
.dropdown-menu ol li {
    list-style: none !important;
    list-style-type: none !important;
    list-style-image: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    background: none !important;
}

.dropdown-menu li:before,
.dropdown-menu li:after {
    content: none !important;
    display: none !important;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: #4A90E2;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1A252F;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    list-style: none !important;
    margin: 0 !important;
}

.dropdown-menu li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: #4A90E2;
}

.cta-button {
    background: #4A90E2;
    color: #ffffff;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(74, 144, 226, 0.2);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    background: #1A252F !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 999 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-menu[style*="display: block"] {
    display: block !important;
}

.mobile-menu[style*="display: none"] {
    display: none !important;
}

/* Override all WordPress default link styles in mobile menu with higher specificity */
.mobile-menu a,
.mobile-menu a:link,
.mobile-menu a:visited,
.mobile-menu a:active,
.mobile-menu a:hover,
.mobile-menu a:focus,
#mobile-menu a,
#mobile-menu a:link,
#mobile-menu a:visited,
#mobile-menu a:active,
#mobile-menu a:hover,
#mobile-menu a:focus {
    color: #ffffff !important;
    text-decoration: none !important;
}

.mobile-menu .mobile-nav-menu,
#mobile-menu .mobile-nav-menu {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 1rem !important;
    background: transparent !important;
    border: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-menu .mobile-nav-menu li,
#mobile-menu .mobile-nav-menu li {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: transparent !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-menu .mobile-nav-menu li:last-child,
#mobile-menu .mobile-nav-menu li:last-child {
    border-bottom: none !important;
}

.mobile-menu .mobile-nav-menu a,
.mobile-menu .mobile-nav-menu a:link,
.mobile-menu .mobile-nav-menu a:visited,
.mobile-menu .mobile-nav-menu a:active,
#mobile-menu .mobile-nav-menu a,
#mobile-menu .mobile-nav-menu a:link,
#mobile-menu .mobile-nav-menu a:visited,
#mobile-menu .mobile-nav-menu a:active {
    display: block !important;
    color: #ffffff !important;
    text-decoration: none !important;
    padding: 1rem 0 !important;
    transition: color 0.2s ease !important;
    border: none !important;
    background: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-menu .mobile-nav-menu a:hover,
.mobile-menu .mobile-nav-menu a:focus,
#mobile-menu .mobile-nav-menu a:hover,
#mobile-menu .mobile-nav-menu a:focus {
    color: #4A90E2 !important;
    text-decoration: none !important;
}

.mobile-menu .mobile-nav-menu span,
#mobile-menu .mobile-nav-menu span {
    display: block !important;
    color: #ffffff !important;
    padding: 1rem 0 !important;
    font-weight: 600 !important;
    background: transparent !important;
    border: none !important;
    text-decoration: none !important;
}

.mobile-menu .mobile-dropdown,
#mobile-menu .mobile-dropdown {
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 6px !important;
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.mobile-menu .mobile-dropdown li,
#mobile-menu .mobile-dropdown li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    list-style: none !important;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mobile-menu .mobile-dropdown li:last-child,
#mobile-menu .mobile-dropdown li:last-child {
    border-bottom: none !important;
}

.mobile-menu .mobile-dropdown a,
.mobile-menu .mobile-dropdown a:link,
.mobile-menu .mobile-dropdown a:visited,
.mobile-menu .mobile-dropdown a:active,
#mobile-menu .mobile-dropdown a,
#mobile-menu .mobile-dropdown a:link,
#mobile-menu .mobile-dropdown a:visited,
#mobile-menu .mobile-dropdown a:active {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    color: #ffffff !important;
    text-decoration: none !important;
    display: block !important;
}

.mobile-menu .mobile-dropdown a:hover,
.mobile-menu .mobile-dropdown a:focus,
#mobile-menu .mobile-dropdown a:hover,
#mobile-menu .mobile-dropdown a:focus {
    color: #4A90E2 !important;
    text-decoration: none !important;
}

.mobile-cta {
    margin-top: 2rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.mobile-menu .mobile-cta .cta-button,
.mobile-menu .mobile-cta .cta-button:link,
.mobile-menu .mobile-cta .cta-button:visited,
.mobile-menu .mobile-cta .cta-button:active,
#mobile-menu .mobile-cta .cta-button,
#mobile-menu .mobile-cta .cta-button:link,
#mobile-menu .mobile-cta .cta-button:visited,
#mobile-menu .mobile-cta .cta-button:active {
    display: block !important;
    text-align: center !important;
    background: #4A90E2 !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    transition: background 0.2s ease !important;
    border: none !important;
}

.mobile-menu .mobile-cta .cta-button:hover,
.mobile-menu .mobile-cta .cta-button:focus,
#mobile-menu .mobile-cta .cta-button:hover,
#mobile-menu .mobile-cta .cta-button:focus {
    background: #357ABD !important;
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Main Content */
.site-main {
    padding-top: 100px;
    min-height: calc(100vh - 80px);
}

/* Blog Layout */
.blog-container {
    display: grid !important;
    grid-template-columns: 2fr 1fr !important;
    gap: 3rem !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 10rem 1rem 2rem 1rem !important;
    width: 100% !important;
}

@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* Override WordPress default containers */
.site-main {
    max-width: none !important;
    width: 100% !important;
    padding: 100px 0 0 0 !important;
}

.container {
    max-width: 1400px !important;
    width: 100% !important;
    margin: 0 auto !important;
    padding: 0 1rem !important;
}

/* Override any theme containers that might be limiting width */
.wp-site-blocks,
.entry-content,
.single-post,
article {
    max-width: none !important;
    width: 100% !important;
}

/* Ensure blog content takes full available width */
.blog-content {
    background: rgba(26, 37, 47, 0.5) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    width: 100% !important;
    max-width: none !important;
}


/* Blog Cards */
.blog-posts {
    display: grid;
    gap: 2rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(74, 144, 226, 0.3);
}

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

.blog-card-content {
    padding: 1.5rem;
}

.blog-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #4A90E2;
}

.blog-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.blog-card-excerpt {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.read-more:hover {
    color: #50E3C2;
}

/* Sidebar */
.blog-sidebar {
    background: rgba(26, 37, 47, 0.5);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.sidebar-widget {
    margin-bottom: 2rem;
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #4A90E2;
}

.widget-content {
    color: #cbd5e1;
    line-height: 1.6;
}

.widget-content ul {
    list-style: none;
    padding: 0;
}

.widget-content li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.widget-content li:last-child {
    border-bottom: none;
}

.widget-content a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.widget-content a:hover {
    color: #4A90E2;
}

/* Single Post */
.single-post {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 37, 47, 0.5);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.single-post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.single-post-content {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 1.1rem;
}

.single-post-content h1,
.single-post-content h2,
.single-post-content h3,
.single-post-content h4,
.single-post-content h5,
.single-post-content h6 {
    color: #ffffff;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.single-post-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid #4A90E2;
    padding-bottom: 0.5rem;
}

.single-post-content h3 {
    font-size: 1.5rem;
}

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

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

.single-post-content blockquote {
    background: rgba(74, 144, 226, 0.1);
    border-left: 4px solid #4A90E2;
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 4px;
}

.single-post-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
}

.single-post-content pre {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1rem 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 3rem 0;
}

.pagination a,
.pagination span {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination a:hover {
    background: #4A90E2;
    border-color: #4A90E2;
}

.pagination .current {
    background: #4A90E2;
    border-color: #4A90E2;
}

/* Footer */
.site-footer {
    background: #1A252F;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    line-height: 1.6;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #4A90E2;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .single-post {
        padding: 2rem 1rem;
    }
    
    .single-post-title {
        font-size: 2rem;
    }
    
    .single-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-content {
        padding: 0 1rem;
    }
}

@media (max-width: 640px) {
    .blog-card-content {
        padding: 1rem;
    }
    
    .blog-card-title {
        font-size: 1.25rem;
    }
    
    .pagination {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mt-4 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* WordPress Specific */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.5rem;
}

.alignleft {
    float: left;
    margin: 0 1rem 1rem 0;
}

.alignright {
    float: right;
    margin: 0 0 1rem 1rem;
}

.aligncenter {
    display: block;
    margin: 1rem auto;
}

/* Search Form */
.search-form {
    display: flex;
    margin-bottom: 1rem;
}

.search-field {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px 0 0 6px;
    color: #ffffff;
    font-size: 1rem;
}

.search-field::placeholder {
    color: #94a3b8;
}

.search-submit {
    padding: 0.75rem 1rem;
    background: #4A90E2;
    border: none;
    border-radius: 0 6px 6px 0;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.search-submit:hover {
    background: #357abd;
}

/* Comments */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-title {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 700;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comment {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment .children {
    margin-top: 1rem;
    margin-left: 2rem;
    border-left: 2px solid rgba(74, 144, 226, 0.3);
    padding-left: 1rem;
}

.comment-author {
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comment-author .avatar {
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.comment-meta {
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.comment-meta a {
    color: #4A90E2;
    text-decoration: none;
}

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

.comment-content {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.comment-content p {
    margin-bottom: 1rem;
}

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

.reply {
    margin-top: 1rem;
}

.comment-reply-link {
    background: rgba(74, 144, 226, 0.1);
    color: #4A90E2;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(74, 144, 226, 0.2);
    transition: all 0.2s ease;
}

.comment-reply-link:hover {
    background: rgba(74, 144, 226, 0.2);
    color: #ffffff;
}

/* Comment Form */
.comment-respond {
    margin-top: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.comment-reply-title {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url {
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #ffffff;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: #4A90E2;
    background: rgba(255, 255, 255, 0.08);
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    margin-top: 1rem;
}

.submit,
input[type="submit"],
input#submit,
.comment-form input[type="submit"],
.form-submit input[type="submit"],
button[type="submit"] {
    background: #4A90E2 !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    border: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    font-size: 0.875rem !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    box-shadow: none !important;
    text-shadow: none !important;
    display: inline-block !important;
    text-decoration: none !important;
}

.submit:hover,
input[type="submit"]:hover,
input#submit:hover,
.comment-form input[type="submit"]:hover,
.form-submit input[type="submit"]:hover,
button[type="submit"]:hover {
    background: #357abd !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3) !important;
    color: #ffffff !important;
}

/* Comment Navigation */
.comment-navigation {
    margin: 2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.comment-navigation a {
    color: #4A90E2;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: rgba(74, 144, 226, 0.1);
    transition: all 0.2s ease;
}

.comment-navigation a:hover {
    background: rgba(74, 144, 226, 0.2);
    color: #ffffff;
}
