/* ===== ШОРТКОДЫ СТАТИСТИКИ ===== */

/* === ОБЩИЕ СТИЛИ === */
.stat-wrapper {
    background-color: #EDEDED;
    padding: 15px;
    margin: 0 0 20px 0;
    border: 1px solid #333333;
    border-radius: 8px;
    font-weight: 500;
    display: block;
}

.stat-header {
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 8px;
}

.stat-legend {
    font-size: 0.95em;
    margin-bottom: 10px;
}

.stat-legend-published {
    color: #2e7d32;
    font-weight: 600;
}

.stat-legend-inprogress {
    color: #e65100;
    font-weight: 600;
}

/* === СПИСОК === */
.stat-list {
    list-style: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.stat-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 6px 0!important;
    border-bottom: 1px dashed #111;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-label {
    font-weight: 400;
    flex: 1;
}

.stat-published {
    color: #2e7d32;
    font-weight: 600;
    margin-left: 10px;
}

.stat-inprogress {
    color: #e65100;
    font-weight: 600;
    margin-left: 10px;
}

.stat-total {
    color: #999;
    font-size: 0.9rem;
    margin-left: 5px;
}

.stat-empty {
    color: #999;
    font-style: italic;
    padding: 8px 0;
}

 

.stat-divider {
    color: #999;
    font-weight: 300;
}


/* === ОТДЕЛЬНЫЕ ЦИФРЫ === */
.stat-number {
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    display: inline-block;
}

/* ОПУБЛИКОВАНО — зелёный */
.stat-events-published,
.stat-place-published,
.stat-library-published {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #2e7d32;
}

/* ВСЕГО — синий */
.stat-events-all,
.stat-place-all,
.stat-library-all {
    background: #e3f2fd;
    color: #0d47a1;
    border: 1px solid #0d47a1;
}

/* В РАБОТЕ — оранжевый */
.stat-events-pending,
.stat-place-pending,
.stat-library-pending {
    background: #fff3e0;
    color: #e65100;
    border: 1px solid #e65100;
}

.stat-date {
    background: #f0f0f0;
    color: #333333;
    padding: 4px 12px;
    border: 1px solid #dddddd;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
}