/* Journey Visualization */
.journey-visualization {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #f0f3f7 100%);
    border-radius: 12px;
}

.journey-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.journey-progress-header h3 {
    font-size: 1.25rem;
    color: #1a202c;
    margin: 0;
}

.journey-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e7f7f;
    /* Brand teal */
}

.journey-path-container {
    position: relative;
    margin: 1.5rem 0;
}

.journey-svg {
    width: 100%;
    height: 80px;
    overflow: visible;
}

/* Walking Person - TEAL/GOLD COLOR */
.walking-person {
    transition: transform 1s ease-out;
}

.walking-person circle {
    fill: #d4af37 !important;
    /* Gold head */
}

.walking-person line {
    stroke: #2a9d8f !important;
    /* Teal body */
    stroke-width: 2.5;
}

.journey-status {
    text-align: center;
    color: #4a5568;
    font-weight: 500;
    margin-top: 1rem;
}

/* Task Categories */
.timeline-tasks-list {
    margin-top: 2rem;
}

.task-category-section {
    margin-bottom: 1.75rem;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.task-category-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #1e7f7f 0%, #2a9d8f 100%);
    color: white;
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.category-icon {
    font-size: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
}

.category-name {
    flex: 1;
    font-weight: 600;
}

.category-count {
    background: rgba(255, 255, 255, 0.25);
    padding: 0.375rem 0.75rem;
    border-radius: 16px;
    font-size: 0.8125rem;
    font-weight: 600;
}

.category-tasks {
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Timeline Tasks */
.timeline-task {
    display: flex;
    gap: 1rem;
    padding: 1.125rem;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #cbd5e1;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-task::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1e7f7f, #2a9d8f);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.timeline-task:hover::before {
    opacity: 1;
}

.timeline-task:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(6px);
    background: #ffffff;
}

.timeline-task.completed {
    opacity: 0.65;
}

.timeline-task.priority-urgent {
    border-left-color: #dc2626;
}

.timeline-task.priority-important {
    border-left-color: #f59e0b;
}

.timeline-task.priority-normal {
    border-left-color: #10b981;
}

.task-checkbox {
    width: 22px;
    height: 22px;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    accent-color: #2a9d8f;
    /* Teal checkbox */
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.task-checkbox:checked {
    transform: scale(1.2);
}

.task-content {
    flex: 1;
}

.task-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

.task-description {
    font-size: 0.875rem;
    color: #4a5568;
    line-height: 1.5;
    margin: 0;
}

.task-deadline {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #f1f5f9;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
}