/* css/abstract-profile.css */

.abstract-container {
    padding: 40px 0;
    background-color: #f9f9f9;
}

/* Sidebar Styles */
.sidebar-block {
    background: #fff;
    border-radius: 6px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-top: 4px solid #1a426b;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a426b;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Specific Sidebar Blocks */
.lang-toggle-block {
    padding: 0;
}
.lang-toggle-block a {
    display: block;
    padding: 10px 15px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    transition: all 0.3s ease;
}
.lang-toggle-block a:last-child {
    border-bottom: none;
}
.lang-toggle-block a:hover, .lang-toggle-block a.active {
    color: #f7b71e;
}

.call-for-papers {
    text-align: center;
}
.call-for-papers p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #444;
}
.btn-primary-alt {
    background: #1a426b;
    color: #fff;
    border: none;
    padding: 8px 15px;
    border-radius: 3px;
    font-size: 13px;
    transition: all 0.3s;
}
.btn-primary-alt:hover {
    background: #f7b71e;
}

.issn-block img {
    max-width: 100%;
    margin-bottom: 15px;
}
.issn-block p {
    font-weight: bold;
    font-size: 13px;
    text-align: center;
    color: #333;
}

.pdf-download-btn {
    display: block;
    background: #fff;
    color: #1a426b;
    border: 1px solid #1a426b;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
    margin-bottom: 20px;
}
.pdf-download-btn i {
    margin-left: 5px;
}
.pdf-download-btn:hover {
    background: #f7b71e;
    border-color: #f7b71e;
    color: #fff;
}

.sidebar-meta-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-meta-list li {
    margin-bottom: 20px;
}
.sidebar-meta-list li strong {
    display: block;
    color: #777;
    font-size: 12px;
    margin-bottom: 5px;
}
.sidebar-meta-list li span {
    display: block;
    font-size: 14px;
    color: #111;
    font-weight: 500;
}

.citation-box {
    background: #fbfbfb;
    border: 1px solid #eee;
    padding: 10px;
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-top: 5px;
}

/* Main Content Styles */
.abstract-main-content {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.article-breadcrumb {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.article-breadcrumb a {
    color: #1a426b;
    text-decoration: none;
}
.article-breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.article-title {
    font-size: 26px;
    font-weight: 800;
    line-height: 1.4;
    color: #111;
    margin-bottom: 20px;
}

.article-authors {
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin-bottom: 30px;
}

.article-section-title {
    font-size: 18px;
    font-weight: bold;
    color: #111;
    margin-top: 30px;
    margin-bottom: 15px;
}

.article-abstract-text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
}

.article-doi {
    margin-top: 30px;
    padding: 15px;
    background: #f9f9f9;
    border-right: 3px solid #1a426b;
    font-size: 14px;
}
.article-doi a {
    color: #1a426b;
    font-weight: bold;
}

/* New specific widgets */
.indexing-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.indexing-logos img {
    opacity: 0.8;
    transition: all 0.3s ease;
}
.indexing-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
}

.keyword-badge {
    display: inline-block;
    background: #eef2f5;
    color: #1a426b;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    margin: 4px;
    font-weight: 500;
    transition: all 0.2s;
}
.keyword-badge:hover {
    background: #1a426b;
    color: #fff;
}

