/* Стили для спринтов и задач */
.sprint-header {
    background: #1e2444;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.sprint-date {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #3b82f6;
}

.sprint-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #00d68f, #3b82f6);
    transition: width 0.3s ease;
}

.sprint-tasks {
    background: #1e2444;
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.task-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.task-name {
    font-size: 0.95rem;
}

.task-status {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.task-status.done {
    background: #00d68f;
    color: #fff;
}

.task-status.in_progress {
    background: #3b82f6;
    color: #fff;
}

.task-status.new {
    background: #f59e0b;
    color: #fff;
}

.tasks-overview {
    background: #1e2444;
    border-radius: 20px;
    padding: 1.5rem;
}

.tasks-column h3 {
    margin-bottom: 1rem;
    color: #3b82f6;
}

.task-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.task-stat.done .stat-number {
    color: #00d68f;
}

.stat-badge {
    font-size: 0.9rem;
    color: #a0aec0;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-unit {
    font-size: 0.8rem;
    color: #a0aec0;
    margin-left: 0.25rem;
}