/* Base Footer Styling */
.ijaie-footer {
    background-color: #8e2134 !important; /* Your Brand Color */
    color: #ffffff !important;
    padding: 60px 0 0 0 !important;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif !important;
   
}

.footer-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 0 20px !important;
    justify-content: space-between !important;
}

/* Individual Columns */
.footer-column {
    flex: 1 !important;
    min-width: 180px !important;
    margin-bottom: 40px !important;
    padding: 0 10px !important;
}

/* Logo & Branding Column */
.logo-col {
    flex: 1.5 !important;
    min-width: 250px !important;
}

.logo-col img {
    max-width: 120px !important;
    height: auto !important;
    background: #fff !important; /* White background for logo contrast */
    padding: 10px !important;
    border-radius: 8px !important;
    margin-bottom: 15px !important;
}

.tagline {
    font-size: 13px !important;
    opacity: 0.8 !important;
    line-height: 1.4 !important;
    max-width: 200px !important;
    color: #ffffff !important;
}

/* Typography */
.footer-column h3 {
    color: #ffffff !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    margin-bottom: 25px !important;
    position: relative !important;
    /* text-transform: uppercase !important; */
    letter-spacing: 0.5px !important;
}

/* Accent Line under Headings */
.footer-column h3::after {
    content: '' !important;
    display: block !important;
    width: 35px !important;
    height: 2px !important;
    background-color: #ffc107 !important; /* Gold accent color for contrast */
    margin-top: 8px !important;
}

/* List & Link Styles */
.footer-column ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-column ul li {
    margin-bottom: 12px !important;
    list-style: none !important;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.footer-column ul li a:hover {
    color: #ffc107 !important; /* Changes to gold on hover */
    padding-left: 5px !important;
}

/* Bottom Copyright Bar */
.footer-bottom {
    background-color: rgba(0, 0, 0, 0.2) !important; /* Slightly darker overlay */
    padding: 25px 20px !important;
    margin-top: 20px !important;
    font-size: 13px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.footer-bottom-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: flex !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
}

.footer-bottom p {
    color: #ffffff !important;
    opacity: 0.9 !important;
    margin: 0 !important;
}

.footer-bottom a {
    color: #ffffff !important;
    text-decoration: none !important;
    margin-left: 15px !important;
}

.footer-bottom a:hover {
    text-decoration: underline !important;
    color: #ffc107 !important;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .footer-column {
        flex: 1 1 30% !important; /* 3 columns per row on tablets */
    }
}

@media (max-width: 600px) {
    .footer-container {
        flex-direction: column !important;
        text-align: center !important;
    }
    
    .footer-column {
        width: 100% !important;
    }
    
    .footer-column h3::after {
        margin: 8px auto !important;
    }

    .footer-bottom-content {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
    
    .footer-bottom a {
        margin-left: 0 !important;
    }
}

.pkp_structure_footer_wrapper {
    background-color: #8e2134 !important;
}
.pkp_site_nav_menu{
    background: #8e2134 !important;
}
@media (min-width: 992px) {
    .pkp_head_wrapper {
        background: #8e2134 !important;
    }}













































    /* --- SIDEBAR MASTER DESIGN --- */

/* 1. Sidebar Container Overall Spacing */
.pkp_structure_sidebar.left {
    padding: 20px !important;
    background-color: #fcfcfc !important;
}

/* 2. Common Block Styling */
.pkp_block {
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    margin-bottom: 25px !important;
    overflow: hidden !important;
    border: 1px solid #eee !important;
}

/* 3. Block Titles Design */
.pkp_block .title {
    background-color: #8e2134 !important; /* Your Theme Color */
    color: #ffffff !important;
    padding: 12px 15px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    margin-top: 0 !important;
    border-bottom: 2px solid #ffc107 !important; /* Gold Accent */
}

/* 4. Submission Button (Special Highlight) */
#customblock-submission .content a {
    display: block !important;
    background: #8e2134 !important;
    color: white !important;
    text-align: center !important;
    padding: 15px !important;
    text-decoration: none !important;
    font-weight: bold !important;
    border-radius: 5px !important;
    transition: 0.3s !important;
    margin: 10px !important;
}

#customblock-submission .content a:hover {
    background: #721a2a !important;
    transform: translateY(-2px) !important;
}

/* 5. Branding Section Design */
.sidebar-branding {
    text-align: center !important;
    padding: 20px 10px !important;
}

.brand-logo {
    max-width: 120px !important;
    height: auto !important;
    margin-bottom: 10px !important;
}

.journal-name {
    font-size: 14px !important;
    font-weight: bold !important;
    color: #333 !important;
}

.journal-subtitle {
    font-size: 12px !important;
    color: #8e2134 !important;
    font-style: italic !important;
}

/* 6. Navigation Menu Design */
.nav-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-item a, .pkp_block.block_information ul li a {
    display: block !important;
    padding: 10px 15px !important;
    color: #444 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
    font-size: 14px !important;
    transition: 0.2s !important;
}

.nav-item a:hover, .pkp_block.block_information ul li a:hover {
    background-color: #f9f9f9 !important;
    color: #8e2134 !important;
    padding-left: 20px !important;
}

/* New Badge Styling */
.new-badge {
    background: #28a745 !important;
    color: white !important;
    font-size: 10px !important;
    padding: 2px 6px !important;
    border-radius: 10px !important;
    margin-left: 5px !important;
}

/* 7. User Action Buttons (Login/Register) */
.sidebar-user-section {
    padding: 15px !important;
}

.user-actions {
    display: flex !important;
    gap: 10px !important;
}

.user-button {
    flex: 1 !important;
    text-align: center !important;
    padding: 8px !important;
    font-size: 13px !important;
    text-decoration: none !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

.register-btn {
    background: #8e2134 !important;
    color: white !important;
}

.login-btn {
    background: #f1f1f1 !important;
    color: #333 !important;
}

/* 8. Journal Metrics Section */
.stats-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    padding: 15px !important;
    background: #fff9fa !important;
}

.stat-item {
    text-align: center !important;
    padding: 10px !important;
    border: 1px solid #eee !important;
    border-radius: 5px !important;
    background: white !important;
}

.stat-value {
    display: block !important;
    font-size: 18px !important;
    font-weight: bold !important;
    color: #8e2134 !important;
}

.stat-label {
    font-size: 11px !important;
    color: #666 !important;
    text-transform: uppercase !important;
}

/* 9. RSS Feeds Icons Styling */
.block_web_feed ul {
    display: flex !important;
    justify-content: space-around !important;
    padding: 15px !important;
    list-style: none !important;
}

.block_web_feed img {
    height: 25px !important;
    transition: 0.3s !important;
}

.block_web_feed img:hover {
    transform: scale(1.2) !important;
}

/* 10. Language Block Fix */
.block_language .content ul li a {
    color: #8e2134 !important;
    font-weight: bold !important;
    text-decoration: none !important;
}


/* --- OVERALL SIDEBAR FIX --- */
.pkp_structure_sidebar.left {
    padding: 15px !important;
    background-color: #f8f9fa !important;
}

/* --- BLOCK CARD DESIGN --- */
.pkp_block {
    background: #ffffff !important;
    border: 1px solid #e1e1e1 !important;
    border-top: 3px solid #8e2134 !important; /* Maroon Accent */
    border-radius: 4px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05) !important;
    overflow: hidden !important;
}

/* --- TITLE STYLING --- */
.pkp_block .title {
    background: #fdfdfd !important;
    color: #8e2134 !important;
    padding: 12px 15px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    border-bottom: 1px solid #eee !important;
    margin: 0 !important;
}

/* --- LATEST PUBLICATIONS (RSS) FIX --- */
/* This part fixes the huge icon issue in your screenshot */
.pkp_block.block_web_feed ul {
    list-style: none !important;
    padding: 15px !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important; /* Stacked list style */
    gap: 10px !important;
}

.pkp_block.block_web_feed ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.pkp_block.block_web_feed ul li a {
    display: flex !important;
    align-items: center !important;
    padding: 8px 12px !important;
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    transition: 0.3s !important;
}

.pkp_block.block_web_feed ul li a img {
    height: 18px !important; /* Small, professional icon size */
    width: auto !important;
    margin-right: 10px !important;
}

/* Adding text next to icons for clarity */
.pkp_block.block_web_feed ul li a::after {
    content: "Subscribe to Feed" !important;
    font-size: 12px !important;
    color: #555 !important;
    font-weight: 600 !important;
}

.pkp_block.block_web_feed ul li a:hover {
    background: #8e2134 !important;
    border-color: #8e2134 !important;
}

.pkp_block.block_web_feed ul li a:hover::after {
    color: #ffffff !important;
}

.pkp_block.block_web_feed ul li a:hover img {
    filter: brightness(0) invert(1) !important; /* Makes icon white */
}

/* --- JOURNAL METRICS FIX --- */
.stats-grid {
    padding: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

.stat-item {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 12px !important;
    background: #fff8f9 !important;
    border: 1px solid #f1dada !important;
    border-radius: 4px !important;
}

.stat-value {
    color: #8e2134 !important;
    font-weight: 800 !important;
    font-size: 15px !important;
}

.stat-label {
    font-size: 11px !important;
    color: #666 !important;
    text-transform: uppercase !important;
    font-weight: 600 !important;
}

/* --- NAVIGATION LINKS --- */
.pkp_block ul {
    list-style: none !important;
    padding: 5px 0 !important;
}

.pkp_block ul li a {
    display: block !important;
    padding: 10px 15px !important;
    font-size: 13px !important;
    color: #444 !important;
    text-decoration: none !important;
    transition: 0.2s !important;
}

.pkp_block ul li a:hover {
    background: #f4f4f4 !important;
    color: #8e2134 !important;
    padding-left: 20px !important;
}
















































/* --- TABS CONTAINER DESIGN --- */
.tabs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    background-color: #f8f9fa !important; /* Light background for the bar */
    padding: 10px !important;
    border-radius: 8px 8px 0 0 !important;
    border-bottom: 3px solid #8e2134 !important; /* Brand color bottom line */
    margin-bottom: 20px !important;
}

/* --- TAB BUTTONS BASIC STYLE --- */
.tab-button {
    background-color: transparent !important;
    color: #555 !important; /* Neutral dark grey for inactive tabs */
    border: none !important;
    outline: none !important;
    padding: 12px 25px !important;
    cursor: pointer !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease-in-out !important;
    border-radius: 5px 5px 0 0 !important;
    position: relative !important;
}

/* --- HOVER EFFECT --- */
.tab-button:hover {
    background-color: rgba(142, 33, 52, 0.1) !important; /* Light maroon tint */
    color: #8e2134 !important;
}

/* --- ACTIVE TAB STYLE (IMPORTANT) --- */
.tab-button.active {
    background-color: #8e2134 !important; /* Solid Brand Color */
    color: #ffffff !important; /* White text for contrast */
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1) !important;
}

/* --- ADDING A SMALL INDICATOR FOR ACTIVE TAB --- */
.tab-button.active::after {
    content: '' !important;
    position: absolute !important;
    bottom: -3px !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background-color: #ffc107 !important; /* Gold accent for premium feel */
}

/* --- RESPONSIVE DESIGN FOR MOBILE --- */
@media (max-width: 600px) {
    .tabs {
        flex-direction: column !important;
        border-bottom: none !important;
        border-left: 4px solid #8e2134 !important; /* Side border for mobile */
    }
    
    .tab-button {
        width: 100% !important;
        text-align: left !important;
        border-radius: 0 !important;
        border-bottom: 1px solid #eee !important;
    }
    
    .tab-button.active::after {
        width: 4px !important;
        height: 100% !important;
        left: -4px !important;
        top: 0 !important;
    }
}
/* --- TABS CONTAINER --- */
.tabs {
    display: flex !important;
    background: #f1f1f1 !important;
    border-radius: 8px 8px 0 0 !important;
    overflow: hidden !important;
    border-bottom: 3px solid #8e2134 !important;
}

/* --- TAB BUTTONS --- */
.tab-button {
    flex: 1 !important;
    padding: 15px 10px !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    background: #e4e4e4 !important;
    color: #444 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
}

.tab-button:hover {
    background: #dcdcdc !important;
}

/* --- ACTIVE BUTTON (Selected) --- */
.tab-button.active {
    background: #8e2134 !important;
    color: #ffffff !important;
}

/* --- CONTENT PANEL DESIGN --- */
.tab-content {
    display: none; /* Default hidden */
    padding: 30px !important;
    background: #ffffff !important;
    border: 1px solid #eee !important;
    border-top: none !important;
    border-radius: 0 0 8px 8px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    animation: fadeIn 0.4s ease !important; /* Smooth appearance */
}

/* Animation for smooth opening */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Show active content */
.tab-content.active {
    display: block !important;
}