.archives-right-section {
    width: 100%;
    padding: 20px;
    background: linear-gradient(135deg, #ffffff, #f0f4f8);
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    animation: archives-slideIn 1s ease-out;
}

.archives-section-title {
    color: #2d6a4f;
    /* margin-bottom: 20px; */
    font-size: 22px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.archives-visual {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.archives-icon {
    width: 90px;
    height: 90px;
    /* border-radius: 50%; */
    object-fit: cover;
    margin-bottom: 10px;
    transition: transform 0.3s;
    border: 3px solid #1e3c72;
}

.archives-icon:hover {
    transform: scale(1.1);
}

.archives-desc {
    color: #2d6a4f;
    font-size: 0.95em;
    font-style: italic;
    font-weight: 500;
}

.archives-timeline-container {
    margin-bottom: 20px;
}

.archives-year-block {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.archives-year-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.1);
}

.archives-year-title {
    font-size: 1.3em;
    margin-bottom: 10px;
    text-align: center;
    background: linear-gradient(90deg, #2d6a4f, #20b980);
    color: white;
    padding: 8px;
    border-radius: 5px;
}

.archives-months-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.archives-month-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: 50px;
}

.archives-month-card:hover {
    background: linear-gradient(135deg, #e0e7f0, #ffffff);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.1);
}

.archives-month-name {
    color: #2d6a4f;
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 5px;
    text-transform: capitalize;
}

.archives-article-count {
    color: #2d6a4f;
    font-size: 0.85em;
    font-weight: 500;
}

.archives-quick-links {
    margin-top: 20px;
}

.archives-quick-links h3 {
    color: #1e3c72;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.archives-quick-links a {
    display: block;
    color: #2a5298;
    text-decoration: none;
    margin-bottom: 8px;
    padding: 10px 15px;
    background: #ffffff;
    border-radius: 5px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.archives-quick-links a:hover {
    background: #1e3c72;
    color: white;
    transform: translateX(5px);
}

/* Animations */
@keyframes archives-slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .archives-right-section {
        width: 100%;
        margin-bottom: 20px;
    }

    .archives-months-grid {
        grid-template-columns: 1fr;
    }

    .archives-month-card {
        height: auto;
        padding: 15px;
    }
}

.archives-full-page-h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.5em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.archives-full-page-archive-year {
    margin-bottom: 40px;
}

.archives-full-page-year-title {
    font-size: 1.8em;
    color: #2980b9;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.archives-full-page-month-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
}

.archives-full-page-month-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #e0e0e0;
}

.archives-full-page-month-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.archives-full-page-month-name {
    font-size: 1.2em;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: bold;
}

.archives-full-page-article-count {
    font-size: 1.5em;
    color: #e74c3c;
    font-weight: bold;
}

@media (max-width: 600px) {
    .archives-full-page-month-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }

    .archives-full-page-month-card {
        padding: 15px;
    }

    .archives-full-page-month-name {
        font-size: 1em;
    }

    .archives-full-page-article-count {
        font-size: 1.2em;
    }
}

.article-view-container {
    max-width: 1200px;
    margin: 15px auto;
    /* padding: 0 20px; */
}

.article-view-header {
    text-align: center;
    padding: 40px 20px;
    background: #ffffff;
    border-bottom: 5px solid #2d6a4f;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.article-view-journal-title {
    /* font-size: 2.5em; */
    font-size: calc(1.25625rem + .075vw);
    color: #2d6a4f;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.article-view-not-found-header {
    font-size: 1.2em;
    color: #ff6f61 !important;
    /* margin-top: 20px; */
    text-align: center;

}

.article-view-header-decor {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    opacity: 0.7;
}

.article-view-wrapper {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

.article-view-main {
    flex: 2;
}

.article-view-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-width: 60%;
}

.article-view-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(45, 106, 79, 0.2);
}

.article-view-header-section {
    border-bottom: 2px solid #3a8b66;
    /* padding-bottom: 15px; */
    margin-bottom: 20px;
}

.article-view-title {
    color: #2d6a4f;
    font-size: 1.2em;
    margin: 0 0 10px 0;
    text-align: center;
}

.article-view-publish-date {
    font-size: 0.9em;
    color: #666;
    font-style: italic;
}

.article-view-section-heading {
    color: #2d6a4f;
    font-size: 1.4em;
    margin-top: 20px;
    position: relative;
}

.article-view-section-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3a8b66;
    transition: width 0.3s ease;
}

.article-view-card:hover .article-view-section-heading::after {
    width: 100px;
}

.article-view-abstract-text,
.article-view-keywords-text {
    font-size: 1em;
    color: #444;
    line-height: 1.7;
    margin: 10px 0;
    text-align: justify;
}

.article-view-actions {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.article-view-action-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    background: #2d6a4f;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.article-view-action-button:hover {
    background: #3a8b66;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.article-view-action-button i {
    margin-left: 8px;
}

.article-view-sidebar {
    flex: 1;
    min-width: 250px;
}

.article-view-sidebar-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.article-view-sidebar-card:hover {
    transform: translateY(-5px);
}

.article-view-sidebar-title {
    color: #2d6a4f;
    font-size: 1.2em;
    margin-bottom: 15px;
    border-bottom: 2px solid #3a8b66;
    padding-bottom: 5px;
}

.article-view-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.article-view-details-list li {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.article-view-details-list li strong {
    color: #2d6a4f;
}

.article-view-stats-box {
    margin-bottom: 20px;
}

.article-view-stats-box p {
    font-size: 0.9em;
    color: #666;
    /* display: flex; */
    align-items: center;
    margin: 8px 0;
}

.article-view-stats-box i {
    color: #2d6a4f;
    margin-right: 8px;
}

.article-view-stats-box span {
    font-weight: bold;
    color: #333;
}

.article-view-submit-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: #2d6a4f;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 14px;
}

.article-view-classic-button {
    width: 30% !important;
}

.article-view-submit-button:hover {
    background: white;
    color: #3a8b66;
    border: 1px solid #2d6a4f;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.article-view-doi-link {
    color: #2d6a4f;
    font-weight: 600;
    text-decoration: none;
}

.article-view-chip {
    text-align: center;
    background: #93e9c3;
    border-radius: 10px;
    padding: 2px;
    color: black !important;
    /* font-weight: 600; */
}

.article-view-navigate-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #f86e64;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.article-view-navigate-btn:hover {
    background-color: #f86e64;
    color: #fff;
}

.article-view-feedback-list-container {
    padding: 30px;
}

.article-view-author-name {
    font-weight: 600;

}

.article-view-author-university {
    font-style: italic;
    /* margin-bottom: 10px; */
    font-size: 14px;
    border-bottom: 1px dotted #ccc;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Responsiveness */
/* Mobile Responsiveness */
@media (max-width: 768px) {
    .article-view-wrapper {
        flex-direction: column;
    }

    .article-view-sidebar {
        min-width: 100%;
        margin-top: 20px;
    }

    .article-view-header {
        padding: 20px 10px;
    }

    .article-view-journal-title {
        font-size: 1.5em;
    }

    .article-view-card {
        padding: 15px;
    }

    .article-view-action-button {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .article-view-classic-button {
        width: 100% !important;
    }
}

.feedback-main-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.feedback-form-wrapper {
    padding: 0;
    background-color: #2d6a4f;
    color: white;
}

.feedback-accordion-header {
    padding: 20px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1e6143;
}

.feedback-accordion-header h2 {
    font-size: 24px;
}

.feedback-accordion-header .feedback-toggle-icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.feedback-accordion-header .feedback-toggle-icon.open {
    transform: rotate(180deg);
}

.feedback-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 30px;
}

.feedback-accordion-content.open {
    max-height: 400px;
    padding: 30px;
}

.feedback-form-group {
    margin-bottom: 20px;
}

.feedback-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.feedback-form-group input,
.feedback-form-group textarea {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

.feedback-form-group textarea {
    height: 100px;
    resize: vertical;
}

.feedback-submit-btn {
    background-color: #ffffff;
    color: #2d6a4f;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 40px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
    border: 1px solid #2d6a4f;

}

.feedback-submit-btn:hover {
    background-color: #2d6a4f;
    color: white;
    border: 2px solid white;
}

.feedback-page-header {
    color: #2d6a4f;
    text-align: center;
    border-bottom: 1px solid #e1e1e1;
}

.feedback-list-container {
    padding: 30px;
}

.feedback-list-item {
    border-bottom: 1px solid #2d6a4f;
    padding: 20px 0;
    display: flex;
    gap: 15px;
}

.feedback-list-item:last-child {
    border-bottom: none;
}

.feedback-avatar {
    width: 40px;
    height: 40px;
    background-color: #2d6a4f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.feedback-item-content h3 {
    color: #4c4e51;
    ;
    /* margin-bottom: 5px; */
}

.feedback-item-content .feedback-date {
    color: #999;
    font-size: 14px;
    margin-bottom: 5px;
}

.feedback-item-content p {
    color: #666;
    text-align: justify;
    /* line-height: 1.6; */
}

.feedback-pagination {
    display: flex;
    justify-content: center;
    padding: 20px 0;
    gap: 10px;
}

.feedback-pagination a {
    padding: 10px 15px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.feedback-pagination a:hover {
    background-color: #2d6a4f;
}

.feedback-pagination a.active {
    background-color: #2d6a4f;
    cursor: default;
}

@media (max-width: 600px) {
    body {
        padding: 10px;
    }

    .feedback-main-container {
        margin: 0;
        border-radius: 0;
    }

    .feedback-accordion-header {
        padding: 15px 20px;
    }

    .feedback-accordion-header h2 {
        font-size: 20px;
    }

    .feedback-accordion-content.open {
        padding: 20px;
    }

    .feedback-list-container {
        padding: 20px;
    }

    .feedback-list-item {
        gap: 10px;
    }

    .feedback-avatar {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .feedback-pagination {
        flex-wrap: wrap;
    }
}


.journal-home-current-issue-container {
    max-width: 1200px;
    /* margin: 20px auto; */
    /* padding: 20px; */
    padding: 5px 12px;
}

.journal-home-issue-header {
    display: flex;
    align-items: center;
    /* background: linear-gradient(135deg, #1e3c72, #2a5298); */
    background: linear-gradient(135deg, #2d6a4f, #4ebf95);
    color: white !important;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
    animation: fadeIn 1s ease-in;
}

.journal-home-cover {
    width: 205px;
    height: auto;
    max-height: 300px;
    max-width: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 20px;
    transition: transform 0.3s;
}

.journal-home-cover:hover {
    transform: scale(1.05);
}

.journal-home-issue-info h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.journal-home-issue-info p {
    font-size: 0.9em;
    margin: 5px 0;
}

.journal-home-section-title-1 {
    color: #2d6a4f;
    /* margin-bottom: 20px; */
    font-size: 1em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid #e0e0e0;
}

.journal-home-articles-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
    gap: 20px;
    margin-bottom: 20px;
}

.journal-home-article-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.journal-home-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.1);
}

.journal-home-article-header {
    margin-bottom: 10px;
}

.journal-home-article-title {
    color: #2d6a4f;
    font-size: 14px;
    margin-bottom: 2px;
    font-weight: bold;
}

.journal-home-article-meta {
    font-size: 0.8em;
    color: #666;
    /* border-bottom: 1px solid; */
    /* margin-bottom: 2px !important; */
}

.journal-home-article-content {
    flex-grow: 1;
}

.journal-home-article-abstract,
.journal-home-article-header {
    font-size: 1rem;
    color: #2d6a4f;
    margin-bottom: 10px;
    line-height: 1.4;
}

.journal-home-article-header {
    font-weight: bold;
}

.journal-home-view-pdf,
.journal-home-view-abstract {
    display: inline-block;
    padding: 8px 15px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.journal-home-view-pdf {
    background: white;
    color: #2d6a4f;
    font-weight: 600;
    border: 1px solid;
}

.journal-home-view-pdf:hover {
    background: #2d6a4f;
    color: white;
    font-weight: 600;
    transform: translateY(-2px);
}

.journal-home-view-abstract {
    background: #2d6a4f;
    color: white;
    font-weight: 600;
}

.journal-home-view-abstract:hover {
    background: white;
    color: #2d6a4f;
    border: 1px solid;
    transform: translateY(-2px);
}

.journal-home-article-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.8em;
    color: #888;
    margin-top: 10px;
}

.journal-home-article-stats span {
    display: flex;
    align-items: center;
}

.journal-home-article-stats i {
    margin-right: 5px;
    color: #2d6a4f;
}

.journal-home-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    margin-top: 40px;
}

.journal-home-pagination button {
    padding: 8px 15px;
    background: linear-gradient(90deg, #2d6a4f, #4ebf95);

    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.journal-home-pagination button:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

.journal-home-pagination button:hover:not(:disabled) {
    background: linear-gradient(90deg, #2d6a4f, #4ebf95);
    transform: translateY(-2px);
}

.journal-home-pagination #pageInfo {
    font-size: 1em;
    color: #1e3c72;
    font-weight: bold;
}

.journal-home-page-info {
    margin-left: auto;
    white-space: nowrap;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .journal-home-issue-header {
        flex-direction: column;
        text-align: center;
    }

    .journal-home-cover {
        margin: 0 0 15px 0;
    }

    .journal-home-articles-grid {
        grid-template-columns: 1fr;
    }

    .journal-home-article-card {
        padding: 10px;
    }


    .journal-home-view-pdf {
        width: 90%;
        margin: 5px 0px;
    }

    .journal-home-view-abstract {
        width: 91%;
        margin: 5px 0px;
    }

    .journal-home-article-stats {
        flex-direction: column;
    }

    .journal-home-current-issue-container {
        padding: 5px;
    }
}

/* ================================
   EPRA CONTENTS – SAFE NAMESPACE
   ================================ */

.journal-home-epra-contents {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    padding: 5px;
    color: #222;
}

.journal-home-epra-contents__container {
    max-width: 1200px;
    margin: auto;
    background: #ffffff;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.journal-home-epra-contents__title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    color: #c40000;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* ===== Table ===== */

.journal-home-epra-contents__table {
    width: 100%;
    border-collapse: collapse;
}

.journal-home-epra-contents__table thead {
    background: #2d6a4f;
    color: #fff;
}

.journal-home-epra-contents__table thead th {
    padding: 12px;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
}

.journal-home-epra-contents__table tbody td {
    padding: 12px;
    /* vertical-align: top; */
    border-bottom: 1px solid #e5e7eb;
    font-size: 14px;
}

.journal-home-epra-contents__table tbody tr:hover {
    background: #f0f6ff;
}

/* ===== Columns ===== */

.journal-home-epra-contents__sno {
    width: 60px;
    text-align: center;
    font-weight: 500;
}

.journal-home-epra-contents__title-col {
    width: 40%;
}

.journal-home-epra-contents__article-title {
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}

.journal-home-epra-contents__doi {
    font-size: 12px;
    color: #2d6a4f;
    word-break: break-all;
}

.journal-home-epra-contents__doi a {
    color: #2d6a4f;
    text-decoration: none;
}

.journal-home-epra-contents__doi a:hover {
    text-decoration: underline;
}

.journal-home-epra-contents__authors {
    white-space: pre-line;
    font-size: 13px;
}

.journal-home-epra-contents__pages {
    text-align: center;
    font-weight: 500;
    white-space: nowrap;
    min-width: 100px;
}

.journal-home-epra-contents__download a {
    display: inline-block;
    padding: 6px 14px;
    background: #2d6a4f;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.journal-home-epra-contents__download a:hover {
    background: #2d6a4f;
}

.journal-home-epra-contents__topBtn {
    text-decoration: none;
    background-color: #2d6a4f;
    color: white;
    padding: 5px 15px;
    border-radius: 5px;
    font-style: normal;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
}

.journal-home-epra-contents__topBtnDiv {
    padding: 6px 0;
    float: right;
    margin-right: 10px;
    margin-bottom: 15px;
}

.journal-home-epra-contents__topBtnMainDiv {
    display: flex;
    text-align: center;
    /* flex-direction: row; */
    flex-direction: row-reverse;
}

/* ===== Mobile Responsive ===== */

@media (max-width: 768px) {

    .journal-home-epra-contents__table,
    .journal-home-epra-contents__table thead,
    .journal-home-epra-contents__table tbody,
    .journal-home-epra-contents__table th,
    .journal-home-epra-contents__table td,
    .journal-home-epra-contents__table tr {
        display: block;
    }

    .journal-home-epra-contents {
        padding: 7px;
    }

    .journal-home-epra-contents__table thead {
        display: none;
    }

    .journal-home-epra-contents__table tbody tr {
        margin-bottom: 20px;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 10px;
    }

    .journal-home-epra-contents__table tbody td {
        border: none;
        padding: 6px 0;
        width: 100%;
        text-align: center;
    }

    .journal-home-epra-contents__article-title {
        text-align: justify;
    }

    .journal-home-epra-contents__table tbody td::before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        color: #374151;
        margin-bottom: 2px;
    }

    .journal-home-epra-contents__topBtnDiv {
        margin-top: 10px;
    }

    .journal-home-epra-contents__topBtnMainDiv {
        text-align: center;
        flex-direction: column;
    }


}


.article-pdf-iframe {
    width: 100%;
    height: 100vh;
    border: none;
}

#article-pdf-viewer {
    width: 100%;
    height: 90vh;
    border: none;
}

.article-pdf-viewer-container {
    width: 100%;
    height: 100vh;
    text-align: center;
    padding: 12px;
}

.article-pdf-iframe-container {
    position: relative;
    width: 100%;
    height: 700px;
}

.article-pdf-loading-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    z-index: 10;
    font-size: 16px;
}

.article-pdf-loading-message.hidden {
    display: none;
}



.common-page-reset-styles * {
    all: revert;
}

.common-page-main-container {
    display: flex;
    flex-direction: row;
    /* justify-content: space-between; */
    justify-content: center;
    padding: 20px;
}

.common-page-main-content {
    width: 65%;
    float: left;
    padding: 15px;
    background-color: #f9f9f9;
    border-right: 1px solid #ddd;
}

.common-page-main-content h1 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 1px solid #d9dddb;
    padding-bottom: 5px;
}

.common-page-right-sidebar {
    width: 35%;
    float: right;
    padding: 15px;
    background-color: #f9f9f9;
    border-left: 1px solid #ddd;
}

.common-page-archive-width {
    width: 30%;
}

.common-page-content-width {
    width: 70%;
}

@media (max-width: 768px) {
    .common-page-main-container {
        flex-direction: column;
        width: 100%;
        padding: 2px;
    }

    .common-page-main-content,
    .common-page-right-sidebar {
        width: 100%;
        float: none;
        border: none;
    }

    .common-page-main-content {
        padding: 10px;
        margin-bottom: 20px;
    }

    .common-page-archive-width {
        width: 100%;
    }

    .common-page-content-width {
        width: 100%;
    }
}

.page-not-found-container {
    /* max-width: 500px; */
    padding: 2rem;
    /* background: rgb(92 177 94); */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    font-weight: bold;
    text-align: center;
    margin: 80px 20px;
}

.page-not-found-heading {
    font-size: 4rem;
    margin-bottom: 0.5rem;
    color: #a00e0e;

}

.page-not-found-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.page-not-found-nagivate-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    color: #2d6a4f;
    border: 1px solid #2d6a4f;
    ;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

.page-not-found-nagivate-btn:hover {
    background-color: #2d6a4f;
    color: #fff;
}

@media (max-width: 600px) {
    .page-not-found-heading {
        font-size: 3rem;
    }

    .page-not-found-text {
        font-size: 1rem;
    }

    .page-not-found-container {
        margin: 1rem;
    }
}

/* Header CSS */
/* Overlay background */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal popup */
.modal {
    background: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    max-height: 80%;
}

.modal-header {
    padding: 15px 20px;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header button {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.modal-body {
    overflow-y: auto;
}

.journal-item {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    border-bottom: 1px solid #f0f0f0;
    cursor: pointer;
    transition: background 0.2s;
}

.journal-item:hover {
    background: #f5faff;
}

.journal-item img {
    width: 40px;
    height: 40px;
    margin-right: 15px;
    object-fit: contain;
}

.journal-item span {
    color: #007bff;
    text-decoration: none;
}

.journal_select {
    float: right !important;
    right: 20px;
    position: absolute;
    padding: 2px;
    font-size: 14px;
    font-weight: 900;
    color: #2d6a4f;
    border-radius: 5px;
    border: 2px white solid;
}

.journal_select:hover {
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 480px) {
    .modal {
        width: 95%;
    }

    .journal-item img {
        width: 30px;
        height: 30px;
        margin-right: 10px;
    }

    .journal_select {
        right: 0px;
        position: relative;
        margin-top: 10px;
    }
}