/* Action Items Component */
.action-items-section {
    margin-bottom: 48px;
}

.action-items-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.action-items-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text, #F5F5F4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.action-items-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #EF4444;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    min-width: 24px;
    height: 20px;
}

.action-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card, #141414);
    border: 1px solid var(--border, #292524);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.action-item:hover {
    background: var(--bg-elevated, #1A1A1A);
    border-color: var(--accent, #F59E0B);
    transform: translateX(4px);
}

.action-item-indicator {
    width: 4px;
    height: 48px;
    border-radius: 2px;
    flex-shrink: 0;
}

.action-item-indicator.urgent {
    background: #EF4444;
}

.action-item-indicator.attention {
    background: #F59E0B;
}

.action-item-indicator.review {
    background: #10B981;
}

.action-item-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.action-item-icon.urgent {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
}

.action-item-icon.attention {
    background: rgba(245, 158, 11, 0.1);
    color: #F59E0B;
}

.action-item-icon.review {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.action-item-content {
    flex: 1;
    min-width: 0;
}

.action-item-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text, #F5F5F4);
    margin-bottom: 4px;
}

.action-item-description {
    font-size: 13px;
    color: var(--text-muted, #A8A29E);
    line-height: 1.4;
}

.action-item-arrow {
    color: var(--text-muted, #A8A29E);
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.action-item:hover .action-item-arrow {
    transform: translateX(4px);
    color: var(--accent, #F59E0B);
}

.action-items-empty {
    padding: 32px 24px;
    text-align: center;
    background: var(--bg-card, #141414);
    border: 1px solid var(--border, #292524);
    border-radius: 8px;
}

.action-items-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
    opacity: 0.3;
}

.action-items-empty-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text, #F5F5F4);
    margin-bottom: 8px;
}

.action-items-empty-description {
    font-size: 14px;
    color: var(--text-muted, #A8A29E);
}

/* Responsive */
@media (max-width: 768px) {
    .action-items-section {
        margin-bottom: 32px;
    }

    .action-item {
        padding: 12px 16px;
    }

    .action-item-indicator {
        height: 40px;
    }

    .action-item-icon {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .action-item-title {
        font-size: 14px;
    }

    .action-item-description {
        font-size: 12px;
    }
}
