/**
 * Journal Statistics Plugin Styles
 * Copyright (c) 2024 Primakara University
 * OJS 3.3 LTS Version
 */

/* ============================================
   ARTICLE LIST STATISTICS (Compact view)
   ============================================ */

.article_list_stats {
    display: inline-flex;
    gap: 12px;
    margin: 10px 0;
    font-size: 0.85em;
    flex-wrap: wrap;
}

.article_list_stats .stat_item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
    cursor: default;
}

.article_list_stats .stat_item.views {
    background: #eff6ff;
    color: #2563eb;
    border: 1px solid #bfdbfe;
}

.article_list_stats .stat_item.downloads {
    background: #ecfdf5;
    color: #059669;
    border: 1px solid #a7f3d0;
}

/*
.article_list_stats .stat_item:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}
*/

.article_list_stats .stat_item.doi {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fcd34d;
}

.article_list_stats .stat_item.doi a {
    color: #92400e;
    text-decoration: none;
}

.article_list_stats .stat_item.doi a:hover {
    text-decoration: underline;
    color: #78350f;
}
