/* Стандартные стили Redmine */
@import url("/assets/application-839c155b.css");


/* =========================================
   Цветовая маркировка проектов
   ========================================= */

/* Dalli — синий */
li.root:has(a[href="/projects/dalli"]) {
    border-left: 5px solid #3b82f6;
    background: #f5f9ff;
}

/* Noxera — фиолетовый */
li.root:has(a[href="/projects/noxera"]) {
    border-left: 5px solid #8b5cf6;
    background: #faf7ff;
}

/* Neutronium — зелёный */
li.root:has(a[href="/projects/neutronium"]) {
    border-left: 5px solid #22c55e;
    background: #f5fff8;
}

/* Chernika-nails — розовый */
li.root:has(a[href="/projects/chernika-nails"]) {
    border-left: 5px solid #ec4899;
    background: #fff7fb;
}


/* Убираем тестовую рамку */
body {
    outline: none !important;
}

/* ========================================
   Статусы задач — аккуратные теги
   ======================================== */

/* Ячейка статуса не должна иметь собственного фона */
.issues td.status {
    background: transparent !important;
    padding: 4px 8px;
    text-align: center;
}

/* Сам тег */
.issues td.status .status-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    white-space: nowrap;
}

/* Status 1 */
.issues tr.status-1 td.status .status-tag {
    background: #e0f2fe;
    color: #0369a1;
}

/* Status 2 */
.issues tr.status-2 td.status .status-tag {
    background: #fef3c7;
    color: #a16207;
}

/* Status 3 */
.issues tr.status-3 td.status .status-tag {
    background: #ede9fe;
    color: #6d28d9;
}

/* Status 4 */
.issues tr.status-4 td.status .status-tag {
    background: #ffedd5;
    color: #c2410c;
}

/* Status 5 */
.issues tr.status-5 td.status .status-tag {
    background: #dcfce7;
    color: #15803d;
}

/* Status 6 */
.issues tr.status-6 td.status .status-tag {
    background: #dbeafe;
    color: #1d4ed8;
}

/* Status 7 */
.issues tr.status-7 td.status .status-tag {
    background: #fee2e2;
    color: #b91c1c;
}

