/* 组件样式 - 卡片、图表、时间线等 */

/* 图表容器 */
.chart-container {
    position: relative;
    height: 150px;
    width: 150px;
}

/* 时间线项目 */
.timeline-item {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.timeline-item.active {
    transform: scale(1.05);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.5);
}

.timeline-item:not(.active):hover {
    transform: scale(1.02);
}

/* 任务卡片 */
.task-card:hover {
    border-color: #3b82f6;
}
