/* Название: calendar-scale.css */
/* Расположение: /wp-content/plugins/calendar_dlp/assets/css/calendar-scale.css */
/* Связь с файлами: Оформляет верхнюю шкалу из includes/view-render.php; значения шкалы обновляет assets/js/calendar-render-scale.js. В одной строке */
/* Описание: Верхняя шкала Calendar DLP, перенесённая 1:1 из старого assets_calendar.css. В одной строке */
/* Секции: [1] Верхняя шкала */
/* Изменения: Возвращены серый фон блока, компактные подписи 11px, bar height 5px и исходные скругления сегментов. В одной строке */

/* [1] Верхняя шкала */
.calendar-dlp-scale{
    background:#f8f8f8;
    border-radius:12px;
    padding:10px 12px 12px 12px;
    margin-bottom:10px;
}
.calendar-dlp-scale-values{
    display:grid;
    grid-template-columns:repeat(5,minmax(0,1fr));
    gap:0;
    margin-bottom:10px;
}
.calendar-dlp-scale-value{
    text-align:center;
    font-size:11px;
    line-height:1;
    font-weight:700;
    color:#2e3560;
}
.calendar-dlp-scale-bar{
    display:grid;
    grid-template-columns:repeat(6,minmax(0,1fr));
    gap:0;
    align-items:center;
}
.calendar-dlp-scale-seg{
    display:block;
    height:5px;
}
.calendar-dlp-scale-seg-0{
    background:var(--r0);
    border-radius:999px 0 0 999px;
}
.calendar-dlp-scale-seg-1{
    background:var(--r1);
}
.calendar-dlp-scale-seg-2{
    background:var(--r2);
}
.calendar-dlp-scale-seg-3{
    background:var(--r3);
}
.calendar-dlp-scale-seg-4{
    background:var(--r4);
}
.calendar-dlp-scale-seg-5{
    background:var(--r5);
    border-radius:0 999px 999px 0;
}

/* Название: calendar-scale.css */
/* Расположение: /wp-content/plugins/calendar_dlp/assets/css/calendar-scale.css */