.journal-container {
    display: flex;
    align-items: flex-start; /* Aligns items to the top */
    max-width: 800px;
    margin: auto;
    /* border: 1px solid #ddd; */
    background-color: #fff;
    /* padding: 20px; */
}

.journal-cover {
    flex: 0 0 170px; /* Fixed width: will not grow or shrink */
    width: 170px; /* Explicitly set width */
    margin-right: 20px;
    box-shadow: 2px 2px 20px -10px;
    border: 0px;
}

.journal-cover img {
    width: 100%;
    height: auto;
    display: block; /* Removes bottom space under the image */
    border: 1px solid #ccc;
}

.journal-details {
    flex-grow: 1;
}

.journal-details p {
    margin: 0 0 12px 0;
    line-height: 1.6;
    font-size: 16px;
}

.label {
    font-weight: bold;
    color: #000;
}

.editor-details {
    /* Adjust margin to align with the text after "Editor :" */
    margin-left: 68px; 
}

.editorial-board-link a {
    font-weight: bold;
    color: #000;
    text-decoration: none;
}

.editorial-board-link a:hover {
    text-decoration: underline;
}

/* --- Responsive Design for smaller screens --- */
@media (max-width: 768px) {
    .journal-container {
        /* Stack items vertically instead of side-by-side */
        flex-direction: column;
        align-items: center; /* Center items for a cleaner look */
    }

    .journal-cover {
        /* Remove side margin and add bottom margin for spacing */
        margin-right: 0;
        margin-bottom: 20px;
    }

    .journal-details {
        text-align: center; /* Center the text for the stacked view */
    }

    .editor-details {
        /* Reset margin for centered text */
        margin-left: 0;
    }
}

        h1 {
            margin: 0;
            font-size: 2rem;
        }
        
        .tabs {
            display: flex;
            flex-wrap: wrap;
            background-color: #f1f1f1;
            border-radius: 0px 0px 0 0;
            overflow: hidden;
        }
        
        .tab-button {
            padding: 12px 20px;
            cursor: pointer;
            background-color: #ddd;
            border: none;
            flex-grow: 1;
            text-align: center;
            transition: background-color 0.3s;
            font-weight: bold;
        }
        
        .tab-button:hover {
            background-color: #ccc;
        }
        
        .tab-button.active {
            background-color: #8e2134;
            color: white;
        }
        
        .tab-content {
            display: none;
            padding: 20px;
            border: 1px solid #ddd;
            border-top: none;
            /* border-radius: 0 0 5px 5px; */
            background-color: white;
        }
        
        .tab-content.active {
            display: block;
        }
        
        h2 {
    color: #8e2134;
    border-bottom: 2px solid #8e2134;
    padding-bottom: 10px;
    text-transform: capitalize;
}
        
.pkp_block .title {
    display: block;
    margin-bottom: .714rem;
    margin-top: 0;
    font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
    font-size: 1.143rem;
    font-weight: 700;
    line-height: 1.43rem;
    color: rgb(142 33 52);
}


@media (min-width: 992px) {
    .pkp_site_name_wrapper {
        height: 4.857rem;
    }
}

        h3 {
            color: #3498db;
        }
        
        .field-section {
            margin-bottom: 30px;
        }
        
        .field-title {
            background-color: #3498db;
            color: white;
            padding: 10px 15px;
            border-radius: 5px;
            margin-bottom: 15px;
        }
        
        ul {
            padding-left: 20px;
        }
        
        li {
            margin-bottom: 8px;
        }
        
        @media (max-width: 768px) {
            .tabs {
                flex-direction: column;
            }
            
            .tab-button {
                width: 100%;
                border-bottom: 1px solid #ccc;
            }
            
            h1 {
                font-size: 1.5rem;
            }
        }


        @media (min-width: 992px) {
    .pkp_structure_content {
        padding-top: 0rem;
    }
}


        /* Footer Styles */
        .footer {
            background-color: #2c3e50;
            color: #ffffff;
            padding: 40px 0 20px;
            font-family: Arial, sans-serif;
        }

        .footer-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .footer-column h3 {
            color: #3498db;
            margin-bottom: 20px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #3498db;
        }

        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-column ul li {
            margin-bottom: 10px;
        }

        .footer-column ul li a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-column ul li a:hover {
            color: #3498db;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-bottom p {
            margin: 0;
            font-size: 0.9rem;
            color: #bdc3c7;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            color: #ffffff;
            background-color: #3498db;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: #2980b9;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .footer-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .footer-column {
                margin-bottom: 20px;
            }

            .footer-column h3 {
                margin-bottom: 15px;
            }
        }


        .pkp_structure_head {
    background-color: #8e2134;
    border-bottom: 1px solid #ddd;
}

.pkp_site_nav_menu {
    background: #8e2134;
}


:root {
  --primary: #4361ee;
  --primary-dark: #3a0ca3;
  --secondary: #4895ef;
  --light: #f8f9fa;
  --dark: #2b2d42;
  --gray: #8d99ae;
  --border-radius: 8px;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  --transition: all 0.3s ease;
}

.ojs-sidebar-section {
  margin-bottom: 1.5rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
}

/* ==================== */
/* 1. BRANDING SECTION */
/* ==================== */
.sidebar-branding {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.brand-text {
  text-align: center;
}

.journal-name {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--dark);
}

.journal-subtitle {
  font-size: 0.9rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ==================== */
/* 2. PRIMARY NAVIGATION */
/* ==================== */
.sidebar-primary-nav .nav-section {
  padding: 0;
}

.section-header {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
  background-color: var(--light);
}

.section-icon {
  margin-right: 0.75rem;
  color: var(--primary);
}

.nav-menu {
  list-style: none;
  padding: 0.5rem 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: var(--dark);
  font-size: 0.95rem;
  transition: var(--transition);
}

.nav-link:hover {
  background-color: rgba(67, 97, 238, 0.05);
  color: var(--primary);
}

.nav-icon {
  width: 24px;
  text-align: center;
  margin-right: 0.75rem;
  color: var(--gray);
}

.nav-link:hover .nav-icon {
  color: var(--primary);
}

.new-badge {
  background: var(--secondary);
  color: white;
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: auto;
}

/* ==================== */
/* 3. SECONDARY NAVIGATION */
/* ==================== */
.sidebar-secondary-nav .nav-link {
  padding: 0.65rem 1.5rem;
}

/* ==================== */
/* 4. USER SECTION */
/* ==================== */
.sidebar-user-section {
  padding: 1rem;
}

.user-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.user-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.register-btn {
  background: var(--primary);
  color: white;
}

.register-btn:hover {
  background: var(--primary-dark);
}

.login-btn {
  background: white;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.login-btn:hover {
  background: rgba(67, 97, 238, 0.05);
}

.button-icon {
  margin-right: 0.5rem;
}

/* ==================== */
/* 5. STATISTICS SECTION */
/* ==================== */
.sidebar-stats {
  padding: 1.5rem;
}

.stats-header {
  display: flex;
  align-items: center;
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--gray);
}

.stats-icon {
  margin-right: 0.75rem;
  color: var(--primary);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.25rem;
}

/* ==================== */
/* RESPONSIVE DESIGN */
/* ==================== */
@media (max-width: 992px) {
  .ojs-sidebar-section {
    margin-bottom: 1rem;
  }
  
  .user-actions {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
}