/**
 * GloSec CrossRef Scientific Papers Styles
 * Usklađen sa dizajnom bekmen.rs sajta
 */

/* Container za naučne radove */
.scientific-research-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Naslov rada */
.scientific-paper-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    line-height: 1.3;
}

/* Autor rada */
.scientific-paper-author {
    font-size: 18px;
    color: #444;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Datum objave */
.scientific-paper-date {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Ključne reči */
.scientific-paper-keywords {
    font-size: 14px;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Sažetak */
.scientific-paper-abstract {
    background-color: #f9f9f9;
    padding: 20px;
    border-left: 3px solid #0054a6;
    margin-bottom: 30px;
    line-height: 1.6;
}

.scientific-paper-abstract strong {
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.scientific-paper-abstract p {
    margin: 0;
    font-size: 14px;
}

/* DOI Link */
.scientific-paper-doi {
    margin-bottom: 30px;
    font-size: 14px;
}

.scientific-paper-doi-link {
    color: #0054a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.scientific-paper-doi-link:hover {
    color: #003366;
    text-decoration: underline;
}

/* Dugme za download */
.scientific-paper-download-button {
    display: inline-block;
    background-color: #0054a6;
    color: #fff;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.scientific-paper-download-button:hover {
    background-color: #003366;
    color: #fff;
}

/* Poruka kad rad nije pronađen */
.scientific-paper-not-found {
    text-align: center;
    padding: 50px 0;
}

.scientific-paper-not-found h1 {
    font-size: 26px;
    color: #444;
    margin-bottom: 15px;
}

.scientific-paper-not-found p {
    font-size: 16px;
    color: #666;
}

/* Stilovi za listu radova */
.glosec-scientific-papers {
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
}

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

.paper-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.paper-item:last-child {
    border-bottom: none;
}

.paper-link {
    text-decoration: none;
}

.paper-link h3 {
    font-size: 20px;
    color: #0054a6;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.paper-link h3:hover {
    color: #003366;
}

.paper-author {
    font-size: 16px;
    color: #444;
    margin-bottom: 5px;
}

.paper-date {
    font-size: 14px;
    color: #666;
} 