/* 優先度別グルーピング コンポーネント */

.priority-group {
    margin-bottom: 8px;
}

.priority-group:last-child {
    margin-bottom: 0;
}

/* 優先度サブヘッダー */
.priority-sub-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    margin: 12px 0 4px 0;
    border-left: 4px solid #909296;
    border-radius: 0 6px 6px 0;
    font-size: 0.9em;
    font-weight: 600;
    color: #374151;
}

.priority-group:first-child .priority-sub-header {
    margin-top: 4px;
}

/* 優先度: 高 — 薄赤背景 + 赤ボーダー */
.priority-sub-header.priority-high {
    background-color: #fef2f2;
    border-left-color: #dc2626;
}

/* 優先度: 中 — 薄黄背景 + アンバーボーダー */
.priority-sub-header.priority-medium {
    background-color: #fffbeb;
    border-left-color: #d97706;
}

/* 優先度: 低 — 薄青背景 + 青ボーダー */
.priority-sub-header.priority-low {
    background-color: #eff6ff;
    border-left-color: #2563eb;
}

/* 件数バッジ */
.priority-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 11px;
    background-color: rgba(0, 0, 0, 0.08);
    font-size: 0.8em;
    font-weight: 700;
    color: #374151;
    line-height: 1;
}

/* 優先度グループ内のリソースリスト */
.priority-group .resource-list {
    margin-top: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .priority-sub-header {
        font-size: 0.85em;
        padding: 5px 10px;
    }
}
